链表的操作
小耗子001
得到的和得不到的都是收获
展开
-
链表的操作
#include <iostream>#include <cstdio>using namespace std;struct node{ int data; node* next;};int main(){ node* node1=new node; node1->data=3; node1->next=NULL; cout&...原创 2018-06-11 19:30:03 · 123 阅读 · 0 评论 -
链表的插入
#include <iostream>#include <cstdio>using namespace std;struct node{ int data; node* next;};node* create(int *a){ node* p,*pre,*head; head =new node; head->next=NULL; ...原创 2018-06-11 19:49:02 · 170 阅读 · 0 评论 -
链表的删除
#include <iostream>#include <cstdio>using namespace std;struct node{ int data; node* next;};node* create(int *a){ node* p,*pre,*head; head =new node; head->next=NULL; ...原创 2018-06-11 20:02:18 · 212 阅读 · 0 评论