题目 1051: [编程入门]结构体之成绩统计2 摘要:兄弟们,大一大二落下的太多了,感觉现在一下子,要接触c,c++,java,python,c#,还有前端其中 c练的最多(但都是皮毛)c++ (今年暑假自学了,感觉和java好像,练了一部分题)java…… 文章列表 2021年09月16日 0 点赞 0 评论 522 浏览 评分:0.0
关于栈的操作 摘要:```c #include #include #define MaxSize 100 typedef int ElemType; typedef struct { ElemTyp…… 文章列表 2021年09月23日 0 点赞 0 评论 239 浏览 评分:0.0
顺序表实现循环队列 摘要:```c #include #include #define MaxSize 100 typedef int ElemType; typedef struct { ElemTyp…… 文章列表 2021年09月26日 0 点赞 0 评论 216 浏览 评分:0.0
链表实现队列 摘要:```c #include #include typedef int ElemType; typedef struct qnode { ElemType data; stru…… 文章列表 2021年09月26日 0 点赞 0 评论 343 浏览 评分:0.0
队列实际求解报数问题 摘要:《数据结构》p108 ```c #include #include typedef int ElemType; typedef struct qnode { ElemType d…… 文章列表 2021年09月26日 0 点赞 0 评论 197 浏览 评分:0.0
链表找中间元素问题 摘要:题目:```c #include #include typedef int ElemType; typedef struct sqlist { ElemType val; str…… 文章列表 2021年10月03日 0 点赞 0 评论 230 浏览 评分:0.0
链表在最大值前面插入一个元素 摘要:```c #include #include typedef int ElemType; typedef struct sqlist { ElemType val; struct…… 文章列表 2021年10月03日 0 点赞 0 评论 278 浏览 评分:0.0
寻找丢失的数字 摘要:给一个由 1 - n 的整数随机组成的一个字符串序列,其中丢失了一个整数,请找到它。 n < 100 数据保证有且仅有唯一解 如果您找到的答案列表丢失了多个数字,可能是您没有找到正确的字符串…… 文章列表 2021年10月03日 0 点赞 0 评论 549 浏览 评分:0.0
编译原理初探二 摘要:编译原理初探二环境:win7 64位+llvm11+mingw+python3.7+libclang11写一个函数行数统计工具C语言测试代码:/*calc1.c*/ #include<stdio.h…… 文章列表 2021年10月05日 0 点赞 0 评论 267 浏览 评分:0.0
编译原理初探三 摘要:环境:win7 64位+llvm11+mingw+python3.7+libclang11基于libclang写了一个提取函数原型的工具C语言测试代码:/*calc1.c*/ //#include<…… 文章列表 2021年10月05日 0 点赞 0 评论 270 浏览 评分:0.0