🍅西红柿🍳炒鸡蛋🍅
🍅西红柿🍳炒鸡蛋🍅
全部文章
工作阶段(C语言)
兴趣阅读(7)
大学阶段(2017-2021)(30)
工作阶段(ARM架构)(2)
工作阶段(LinuxOS)(21)
工作阶段(内核驱动)(8)
工作阶段(系统移植)(3)
工作阶段(网络协议)(1)
工作阶段(英语)(2)
招聘阶段(知识储备)(6)
招聘阶段(错题涉及知识点)(2)
毕业设计(16)
归档
标签
去牛客网
登录
/
注册
🍅西红柿🍳炒鸡蛋🍅的博客
着眼当下
全部文章
/ 工作阶段(C语言)
(共22篇)
#include 「time.h」
下面自我测试 | 返回程序启动到现在的运行时间是函数 | 将unix时间转化为字符时间 | 将格林时间转化为字符时间 | 将unix时间转化为格林时间 | 获取unix时间 #include <stdio.h> #include <stdlib.h>...
2021-03-31
0
417
#include 「string.h」
下面是自我测试 | "hello word"字符串,我只要"word"怎么实现 | “hello wang"与"hello li”,我想要比较这两个字符串前面4个字符是不是一样的,怎么弄 | 我想把"hello w...
2021-03-31
0
301
#include 「stdlib.h」
下面是自我测试 | “3.14” --> 3.14 ,怎么实现 | “3” --> 3 ,怎么实现 | “88888888888” --> 88888888888,怎么实现 | “3.14yqj” --> 3.14 + “yqj”,怎么实现 | “88...
2021-03-31
0
462
#include 「stdio.h」
如何打开文件流,如何将字符数组的内容格式发写入文件流,如何将数据写入文件流;如何将文件流读指定数据出来,如何从文件流中读一个字符出来.如何将文件流全部推入文件;如何关闭文件流 如果触发了错误,错误变量error被设置了,如何清除error,使用什么函数 如何判断文件流是否读完;如何记...
2021-03-31
0
409
#include 「stddef.h」
下面是自我检测的区域,查看题目,自我回答,感觉自己掌握了就可以打勾 查看结构体变量的偏移量的函数叫做什么 #include <stdlib.h> #include <stdio.h> #include <stddef.h> /* 偏移=offset,...
2021-03-31
0
497
01-顺序表
1>>问:数据结构英文 -->>DS = data struct 2>>DS = (D,R) //D为数据元素的集合 -- R为D上关系的集合 D = {2I+1 | i = 0,1,2,3,4} R = {<1,3> , <3,5>...
2021-03-31
0
532
02 -- 单链表
>>步骤1:编写listnode.h文件 //============================================================ #ifndef __listnode_H__ #define __listnode_H__ #include <...
2021-03-31
0
323
03-双向循环链表
dlist.h #ifndef __DLIST_H__ #define __DLIST_H__ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef struc...
2021-03-31
0
544
04 -- 栈
顺序栈 sqstack.h #ifndef __LINKLIST_H__ #define __LINKLIST_H__ #include <stdio.h> #include <stdlib.h> #define MAX 100 typedef struct NODE...
2021-03-31
0
380
05 -- 队列
顺序循环队列 seqqueue.h #ifndef __SEQQUEUE_H__ #define __SEQQUEUE_H__ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #def...
2021-03-31
0
350
首页
上一页
1
2
3
下一页
末页