【数据结构】 动态链表的基本操做

动态链表的基本操做 #include<iostream> using namespace std; struct node{ int data; node* next; }; //建立链表 node *create(int Array[],int n){ node *p, *pre, *head; head=new node; head->next=NULL; pre=head; f
相关文章
相关标签/搜索