kexin2024年5月22日

在CLion上调试程序

使用程序的模板来调试程序

在下图中输入作为console窗口输入输入数据。

下面将程序记录一下

首先的是模板

//main.c

/** * Description: * Caution:本地调试时,只编译运行这一个文件,不要链接solution.c!因为本文件已经include了solution.c*/#include <stdlib.h>
#include <stdio.h>
#include "securec.h"
#include "solution.c"// 以下为考题输入输出框架,此部分代码不建议改动;提交代码时请勿包含下面代码
static int *ExpandListInt(int *ptr, size_t oldLen, size_t newLen)
{int *newPtr = (int *)malloc(newLen * sizeof(*ptr));if (newPtr) {for (size_t i = 0; i < oldLen; ++i) {newPtr[i] = ptr[i];}}if (ptr) { free(ptr); }return newPtr;
}static void SkipWs(void)
{char c = (char)getchar();while (c == ' ' || c == '\r' || c == '\n') {c = (char)getchar();}(void)ungetc(c, stdin);
}static void FreeListInt(int *value)
{if (!value) { return; }free(value);
}static bool ReadListInt(int **value, size_t *size)
{SkipWs();char c = (char)getchar();if (c != '[') { return false; }SkipWs();c = (char)getchar();if (c == ']') {*value = NULL;*size = 0;return true;}(void)ungetc(c, stdin);size_t cap = 32;for (size_t pos = 0;; ++pos) {if (pos == 0 || pos >= cap) {cap *= 2;*value = ExpandListInt(*value, pos, cap);if (*value == NULL) { break; }}if (scanf_s("%d", &(*value)[pos]) != 1) { break; }SkipWs();int in = getchar();if (in == EOF) { break; }if ((char)in == ']') {*size = pos + 1;return true;}if ((char)in != ',') { break; }}FreeListInt(*value);*value = NULL;return false;
}static void PrintResultInfo(const ResultInfo *ptr)
{printf("[");printf("%d", ptr->time);printf(", ");printf("%d", ptr->timerId);printf("]");
}static void PrintListResultInfo(const ResultInfo *value, size_t size)
{printf("[");for (size_t i = 0; i < size; ++i) {PrintResultInfo(&value[i]);if (i + 1 < size) { printf(", "); }}printf("]");
}static void FreeListResultInfo(ResultInfo *value)
{if (!value) { return; }free(value);
}static bool CallCreate(TimerSystem **sys)
{int *timers = NULL;size_t timersSize = 0;bool isOk = false;do {SkipWs();char c = (char)getchar();if (c != '(') { break; }if (!ReadListInt(&timers, &timersSize)) { break; }SkipWs();c = (char)getchar();if (c != ')') { break; }isOk = true;*sys = TimerSystemCreate(timers, timersSize);} while (false);FreeListInt(timers);timers = NULL;printf("null\n");return isOk;
}static bool CallTimerStart(TimerSystem *sys)
{int timerId = 0;bool returnValue = false;bool isOk = false;do {SkipWs();char c = (char)getchar();if (c != '(') { break; }if (scanf_s("%d", &timerId) != 1) { break; }SkipWs();c = (char)getchar();if (c != ')') { break; }isOk = true;returnValue = TimerSystemTimerStart(sys, timerId);printf("%s", returnValue ? "true" : "false");} while (false);printf("\n");return isOk;
}static bool CallTimerStop(TimerSystem *sys)
{int timerId = 0;bool returnValue = false;bool isOk = false;do {SkipWs();char c = (char)getchar();if (c != '(') { break; }if (scanf_s("%d", &timerId) != 1) { break; }SkipWs();c = (char)getchar();if (c != ')') { break; }isOk = true;returnValue = TimerSystemTimerStop(sys, timerId);printf("%s", returnValue ? "true" : "false");} while (false);printf("\n");return isOk;
}static bool CallRunTimerSystem(TimerSystem *sys)
{int nowTime = 0;ResultInfo *returnValue = NULL;size_t returnSize = 0;bool isOk = false;do {SkipWs();char c = (char)getchar();if (c != '(') { break; }if (scanf_s("%d", &nowTime) != 1) { break; }SkipWs();c = (char)getchar();if (c != ')') { break; }isOk = true;returnValue = TimerSystemRunTimerSystem(sys, nowTime, &returnSize);PrintListResultInfo(returnValue, returnSize);} while (false);FreeListResultInfo(returnValue);returnValue = NULL;printf("\n");return isOk;
}static bool GetCmdName(char* buffer, size_t size)
{SkipWs();size_t pos = 0;char c = (char)getchar();while (c != '\r' && c != '\n' && c != ' ' && c != '(' && feof(stdin) == 0 && pos < size) {buffer[pos++] = c;c = (char)getchar();}if (pos >= size) { return false; }buffer[pos] = '\0';if (pos == 0) { return feof(stdin) != 0; }if (feof(stdin) == 0) { (void)ungetc(c, stdin); }return true;
}int main(void)
{char cmd[64] = {0};bool isOk = GetCmdName(cmd, sizeof(cmd));TimerSystem *sys = NULL;if (strcmp(cmd, "TimerSystem") != 0) { isOk = false; }if (isOk) { isOk = CallCreate(&sys); }while (isOk) {const char *cmds[] = {"timerStart", "timerStop", "runTimerSystem"};bool (*funcs[])(TimerSystem *sys) = {CallTimerStart, CallTimerStop, CallRunTimerSystem};if (!GetCmdName(cmd, sizeof(cmd))) {isOk = false;break;}if (cmd[0] == '\0') {TimerSystemFree(sys);return 0;}isOk = false;for (size_t i = 0; i < sizeof(cmds) / sizeof(cmds[0]); ++i) {if (strcmp(cmd, cmds[i]) == 0) {isOk = (*funcs[i])(sys);break;}}}printf("Error: Input format incorrect!");if (sys) { TimerSystemFree(sys); }return 0;
}

//solution.c

/** * Description: * Caution:本地调试时,只编译运行timer.c文件,不要链接这个文件!因为本文件已经被timer.c文件include了*/#include <stdbool.h>typedef struct {} TimerSystem;typedef struct {int time;int timerId;
} ResultInfo;// 注意:该函数为类构造函数,返回的对象指针将作为其他待实现函数的入参;框架代码在调用该函数后,会输出 null(而非指针)
static TimerSystem *TimerSystemCreate(const int *timers, size_t timersSize)
{return NULL;
}static bool TimerSystemTimerStart(TimerSystem *sys, int timerId)
{return false;
}static bool TimerSystemTimerStop(TimerSystem *sys, int timerId)
{return false;
}// 注意:返回的数组必须在函数内调用malloc进行内存分配,由框架代码调用free进行内存释放。
// 返回的数组长度需要保存在 *returnSize 中。
static ResultInfo *TimerSystemRunTimerSystem(TimerSystem *sys, int nowTime, size_t *returnSize)
{*returnSize = 0;return NULL;
}static void TimerSystemFree(TimerSystem *sys)
{}

实现逻辑代码

/** * * Caution:本地调试时,只编译运行timer.c文件,不要链接这个文件!因为本文件已经被timer.c文件include了*/#include <stdbool.h>
#include <malloc.h>
#include <stdlib.h>typedef struct {int time;int timerId;
} ResultInfo;typedef struct {ResultInfo resultInfo;int count;int terminalTime;int sysTime;bool status;
} TimerSystem;// 注意:该函数为类构造函数,返回的对象指针将作为其他待实现函数的入参;框架代码在调用该函数后,会输出 null(而非指针)
static TimerSystem* TimerSystemCreate(const int* timers, size_t timersSize)
{TimerSystem* timerSystem = (TimerSystem*) malloc(sizeof(TimerSystem) * timersSize);                     //创建堆空间指针for (int i = 0; i < timersSize; i++) {timerSystem[i].resultInfo.timerId = i;timerSystem[i].resultInfo.time = timers[i];timerSystem[i].count = timersSize;timerSystem[i].sysTime = 0;timerSystem[i].terminalTime = 0;timerSystem[i].status = false;}return timerSystem;
}static bool TimerSystemTimerStart(TimerSystem* sys, int timerId)
{int count = sys[0].count;for (int i = 0; i < count; i++) {if (timerId == sys[i].resultInfo.timerId) {sys[i].status = true;sys[i].terminalTime = sys[i].sysTime;                   //start时更新成系统最终时间,否则terminalTime保持不变,最为下次计数起始时间return true;}}return false;
}static bool TimerSystemTimerStop(TimerSystem* sys, int timerId)
{int count = sys[0].count;for (int i = 0; i < count; i++) {if (timerId == sys[i].resultInfo.timerId) {sys[i].status = false;return true;}}return false;
}static int compare(const void* a, const void* b)
{int diff = ((ResultInfo*) a)->time - ((ResultInfo*) b)->time;if (diff == 0) {diff = ((ResultInfo*) a)->timerId - ((ResultInfo*) b)->timerId;}return diff;
}// 注意:返回的数组必须在函数内调用malloc进行内存分配,由框架代码调用free进行内存释放。
// 返回的数组长度需要保存在 *returnSize 中。
static ResultInfo* TimerSystemRunTimerSystem(TimerSystem* sys, int nowTime, size_t* returnSize)
{int count = sys[0].count;ResultInfo* array = (ResultInfo*) malloc(sizeof(ResultInfo) * count * 1000);int arrayIndex = 0;for (int i = 0; i < count; i++) {sys[i].sysTime = nowTime;                           //记录系统最终时间,遇到start时更新成系统最终时间if (sys[i].status == false) { continue; }           //关闭的计时器不再计数int time = sys[i].resultInfo.time;int terminalTime = sys[i].terminalTime;int tempTime = time + terminalTime;while (tempTime <= nowTime) {array[arrayIndex].timerId = i;array[arrayIndex].time = tempTime;tempTime += time;arrayIndex++;}sys[i].terminalTime = tempTime - time;}qsort(array, arrayIndex, sizeof(ResultInfo), compare);*returnSize = arrayIndex;return array;
}static void TimerSystemFree(TimerSystem* sys)
{free(sys);
}/** 遗留问题,结构体数组是否可以使用{0}初始化* qsort对结构体数据排序* start时全部更新到最新时间,下次计数时间为最新时间。如果不是start,下次计数时间为上一次最后的时间*/

CMakelist.txt

cmake_minimum_required(VERSION 3.16.5)message("this is cmakelist log")
message(${CMAKE_CURRENT_SOURCE_DIR})get_filename_component(ProjectId ${CMAKE_CURRENT_SOURCE_DIR} NAME)
message(${ProjectId})
message(${ProjectId})
message(NAME)
string(REPLACE " " "_" ProjectId ${ProjectId})
message(${ProjectId})
project(${ProjectId} C)#添加宏定义Debug为CMAKE_BUILD_TYPE
SET(CMAKE_BUILD_TYPE "Debug")set(CMAKE_CXX_STANDARD 17)if (CMAKE_BUILD_TYPE STREQUAL Debug)set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -D_DEBUG")
else ()set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -D_DEBUG")
endif ()#添加头文件
#例如:include_directories(/usr/include/abc /usr/include/xxx)
#是将“/usr/include/abc”和“/usr/include/xxx”这两个目录添加至编译器的头文件搜索目录(两个目录用空格分隔)。
include_directories(../3rd/huawei_secure_c-master/include)aux_source_directory(../3rd/huawei_secure_c-master/src secureCSrc)#通过编译源文件来创建一个可执行文件,其中,name是生成的可执行文件的名称,source是创建可执行文件所需要的源文件。
#源文件可以使用aux_source_directory指令返回的变量(将源文件保存在这个变量中),也可以是指定的.cpp文件(注意路径)。
add_executable(${ProjectId}${secureCSrc}solution.cmain.c)

针对上面的逻辑代码,有两个测试用例

----------------------------------
TimerSystem([3, 5])
timerStart(0)
timerStart(1)
runTimerSystem(17)
timerStop(1)
runTimerSystem(20)
timerStop(1)
timerStop(2)----------------------------------
TimerSystem([8, 4, 11])
runTimerSystem(2)
timerStart(1)
timerStart(4)
runTimerSystem(8)
timerStart(0)
timerStart(2)
timerStart(1)
runTimerSystem(20)
timerStop(1)
runTimerSystem(30)测试输出
null
[]
true
false
[[4, 1], [8, 1]]
true
true
true
[[4, 1], [8, 0], [8, 1], [11, 2], [12, 1], [16, 0], [16, 1], [20, 1]]
true
[[22, 2], [24, 0]]预期输出null
[]
true
false
[[6, 1]]
true
true
true
[[12, 1], [16, 0], [16, 1], [19, 2], [20, 1]]
true
[[24, 0], [30, 2]]

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/844050.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

初学JavaScript

什么是JavaScrip&#xff1a; JavaScript 是一种高级编程语言&#xff0c;主要用于网页开发。它是一种动态、弱类型的语言&#xff0c;可以在客户端&#xff08;浏览器&#xff09;中运行&#xff0c;并与 HTML 和 CSS 一起用于创建交互式网页。JavaScript 可以添加动态功能&a…

vba 基本操作

1. 获取多有的sheets 并对sheet 循环处理 Dim sheets As sheets Dim sheet As Worksheet Dim name As String Set sheets ThisWorkbook.Worksheets For Each sheet In sheetsIf sheet.name <> "Sheet1" Thenname sheet.nameEnd If Next sheet2. 添加一个工…

电脑误删除的文件怎么恢复?6个方法图文详解!

“我在电脑上误删除了一些比较重要的文件&#xff0c;现在不知道应该怎么操作了&#xff0c;有没有可以分享一下经验的朋友呀&#xff1f;” 在数字化世界的浪潮中&#xff0c;电脑成为了我们处理、存储和分享信息的重要工具。然而&#xff0c;随着我们对电脑的依赖日益加深&am…

深入理解@TableField注解的使用-MybatisPlus教程

TableField注解是MyBatis-Plus框架提供的一个功能&#xff0c;用于指定实体类属性与数据库表列的映射关系。当实体类的属性名称和数据库表的列名称不一致&#xff0c;或者需要指定一些特殊的处理逻辑时&#xff0c;可以使用TableField注解。 以下是TableField注解的一些常见用…

cfa三级大神复习经验分享系列(二)

嫌文章太长&#xff0c;我给大家一个备考简略总结&#xff0c;看完可以关闭。资料&#xff1a;note真题&#xff08;三级不用&#xff09;基础/强化班 note看两遍例题动手做两遍&#xff0c; 真题动手做三遍 其他&#xff0c;没有了&#xff0c;做好这些 高分pass 一&#xff…

【云原生】kubernetes中Configmap原理解析与应用实战

✨✨ 欢迎大家来到景天科技苑✨✨ &#x1f388;&#x1f388; 养成好习惯&#xff0c;先赞后看哦~&#x1f388;&#x1f388; &#x1f3c6; 作者简介&#xff1a;景天科技苑 &#x1f3c6;《头衔》&#xff1a;大厂架构师&#xff0c;华为云开发者社区专家博主&#xff0c;…

236. 二叉树的最近公共祖先(C++)

文章目录 前言一、题目介绍二、解决方案三、优化总结 前言 在本篇文章中我们将会讲解二叉树中极为经典的题目236. 二叉树的最近公共祖先 一、题目介绍 给定一个二叉树, 找到该树中两个指定节点的最近公共祖先。 百度百科中最近公共祖先的定义为&#xff1a;“对于有根树 T 的…

如何借VR之手,让展厅互动更精彩?

VR虚拟现实技术以其卓越的沉浸式体验为特点&#xff0c;引领用户踏入一个全新的虚拟世界&#xff0c;正因如此&#xff0c;它开始被广泛应用于展厅、商业等多个领域。那么&#xff0c;今天&#xff0c;让我们就来了解一下这种技术是如何为展厅带来精彩互动体验的吧&#xff01;…

日常使用工具(截图,笔记,一键启动)

目录 一,截图 Snipaste 二.笔记 Joplin 三.翻译 四.自动启动软件 这篇记录一下工作中用的很顺手的工具. 一,截图 Snipaste 官网:Snipaste - 截图 贴图 下面是官方手册. 使用 我都是直接F1 就会出现选择框,随意拖动大小,选择下方工具栏,相应位置, 二.笔记 Joplin 官网:…

el-table表格实现鼠标拖动而左右滑动

场景描述&#xff1a; 表格样式较为复杂&#xff0c;10条数据超出整个屏幕的高度&#xff0c;因而导致无法快速拖动滚动条&#xff0c;所以提出需要在表格内容区拖动鼠标&#xff0c;从而实现无需滚动到底部就可以左右拖动表格内容的效果。 具体实现&#xff1a; 实现的方式…

上海云管平台怎么样?客服电话多少?

云计算已经成为了企业数字化转型的重要一部分&#xff0c;而在上海&#xff0c;云管平台发展更是大势所趋。这不不少小伙伴在问&#xff0c;上海云管平台怎么样&#xff1f;客服电话多少&#xff1f; 上海云管平台怎么样&#xff1f;客服电话多少&#xff1f; 【回答】&#…

[排序算法]4. 图解堆排序及其代码实现

先来看看什么是堆? 堆是一种图的树形结构&#xff0c;被用于实现“优先队列”&#xff08;priority queues&#xff09; 注:优先队列是一种数据结构&#xff0c;可以自由添加数据&#xff0c;但取出数据时要从最小值开始按顺序取出。 在堆的树形结构中&#xff0c…

vscode的使用 ubuntu入门之二十二

高亮标识符&#xff0c;变量或者函数可以用 rainbow-highlighter 这个插件 Press shiftaltz, and variables curser is on will be highlighted. Press the same command again to remove highlights. Press shiftalta to remove all highlights. 参考&#xff1a; 在VSCode…

【台阶问题】

目录 问题&#xff1a; 思路&#xff1a; 回溯-分支限界法 知识点 目标函数&#xff08;分支结束的情况&#xff09;: n0 约束函数&#xff08;截断不合理的分支&#xff09;: num < 2 、 i > n-i && num 0 限界函数&#xff08;阶段不最优的分支&#xf…

开发问题合集(待补充)

docker 学习文档 ollama 官网 streamlit 官方文档

通过伪造NPU设备,让AscendSpeed在没有安装torch_npu的环境中跑起来

通过伪造NPU设备,让AscendSpeed在没有安装torch_npu的环境中跑起来 代码输出 背景: 我想在GPU上运行AscendSpeed框架,因为没有torch_npu、deepspeed_npu,又不想一个个注释掉 方法: 1.本文本通过创建一个FakeDevice 类来伪造 NPU&#xff08;Neural Processing Unit&#xff0…

C语言动态内存分配

有些情况下需要开辟的空间大小在程序运行过程中才能确定下来&#xff0c;而常规的在栈区开辟空间是在编译时就分配好了内存&#xff0c;并且内存大小不能改变&#xff0c;因此需要引入动态内存分配&#xff0c;动态内存分配的内存是在堆区&#xff0c;需要由用户手动开辟&#…

共享内存的分享

共享内存是一种进程间通信&#xff08;IPC&#xff0c;Inter-Process Communication&#xff09;的机制&#xff0c;用于在不同进程之间共享数据。它允许多个进程访问同一个内存段&#xff0c;从而使数据传递更加高效。共享内存的主要作用包括&#xff1a; 1. 高效数据交换 共…

java: 警告: 源发行版 8 需要目标发行版 8

前言 该文章中项目背景是&#xff1a;IDEA与设置的版本与实际电脑配置的不一致。也就是说只改了这个团队项目的JDK版本&#xff0c;IDEA上其它项目JDK版本未更改。 提示&#xff1a; IDEA警告&#xff1a;javaX&#xff1a;警告&#xff1a;源发行版 需要目标发行版 简略步…

.NET 某和OA办公系统全局绕过漏洞分析

转自先知社区 作者&#xff1a;dot.Net安全矩阵 原文链接&#xff1a;.NET 某和OA办公系统全局绕过漏洞分析 - 先知社区 0x01 前言 某和OA协同办公管理系统C6软件共有20多个应用模块&#xff0c;160多个应用子模块&#xff0c;从功能型的协同办公平台上升到管理型协同管理平…