数据结构所有代码C++实现
精心整理一:线性表1.单链表应用例子一:尾插入创立单链表,并且删除相同元素,即表示一个集合#includeusing namespace std;struct node{ int num; struct node *next;};node *head;void creat_list(){ int N,i; cin>>N; node*temp,*tail; head=new node; tail=head; tail->next=NULL; for(i=0;i<=N-1;i++) {
下载地址
用户评论
很全面合理,谢谢
有很多是C语言 分数太贵了T^T
谢谢,整理的很全面,很好的资源
很好的资源啊
c语言吧这是