LiXiang666
LiXiang666
全部文章
数据结构
acm集锦(1)
c/c++(36)
Java(2)
mos(1)
PTA(1)
python(26)
Virtual Judge(6)
未归档(11)
蓝桥杯(29)
归档
标签
去牛客网
登录
/
注册
沐丶偶
For day In experience。
全部文章
/ 数据结构
(共13篇)
前插与后插
#include<iostream> using namespace std; typedef int ElemType; typedef struct lnode { ElemType data; lnode* next; }lnode, *linklist; //前插法创建单链表...
2019-04-28
0
357
对于插入和删除数据越频繁的操作 ,单链表较顺序存储结构效率越有优势
单链表由好多个结点构成 其中头节点可有可无 可以用来存放链表长度。 头指针必须有 每一个指针指向 下一个结点的数据域 头指针指向头结点 头结点中还有一个指针变量 指针域是一个结点类型的指针 #include<iostream> using namespace std; typede...
2019-04-28
0
414
线性表的几种操作
#include<iostream> using namespace std; #define max 100 typedef struct lnode* list; typedef int ElementType; struct lnode { ElementType date[m...
2019-04-27
0
413
首页
上一页
1
2
下一页
末页