🍅西红柿🍳炒鸡蛋🍅
🍅西红柿🍳炒鸡蛋🍅
全部文章
分类
兴趣阅读(7)
大学阶段(2017-2021)(30)
工作阶段(ARM架构)(2)
工作阶段(C语言)(22)
工作阶段(LinuxOS)(21)
工作阶段(内核驱动)(8)
工作阶段(系统移植)(3)
工作阶段(网络协议)(1)
工作阶段(英语)(2)
招聘阶段(知识储备)(6)
招聘阶段(错题涉及知识点)(2)
毕业设计(16)
归档
标签
去牛客网
登录
/
注册
🍅西红柿🍳炒鸡蛋🍅的博客
着眼当下
全部文章
(共120篇)
08 //设备树开发
//================================================================================================================================= [1] >> 设备树基础...
2021-03-31
0
411
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
06 -- 二叉树
二叉树 btree.h #ifndef __BTREE_H__ #define __BTREE_H__ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef struct ...
2021-03-31
0
432
07 --查找
折半查找 #include <stdio.h> #include <string.h> //注意:奇数个数,偶数个数都可查询 void main() { int array[] = { 110,100,90,80,70,60,50,40,30,20,10};...
2021-03-31
0
384
计算机网络
//================================================================================================================================= [1] >> 互联网的三...
2021-03-31
0
463
vim配置
1:最开始的初衷是想装YCM插件,由于YCM需要vim8,而且对环境要求很多,配置很复杂,迟迟弄了2天也没弄出来 2:下面简单做个总结,以后来弄吧! 3:请先看这篇大佬的文章 https://blog.csdn.net/bc516125634/article/details/888580...
2021-03-31
0
510
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页