LinkedList List_tailInsert(LinkedList &L); //在单链表的第i个位置的前面插入一个节点 bool Insert_Node_toList(LinkedList &L, int i, int e); //将单链表的第i个节点删除 bool Del_Node_InList(LinkedList &L, int i); //获取单链表第首个e元素的位置 int GetLocation_Val_fromList(LinkedList &L...
//单链表测长 void length(Node *head){ Node *p = head->pstnext;int j=0;while(NULL != p){ p = p->pstnext;j++;} printf("%d\r\n", j);} //链表按值查找 void research_Date(Node *head, int date){ Node *p;int n=1;p = head->pstnext;while(NULL != p && date...
LinkedList List_tailInsert(LinkedList &L); //在单链表的第i个位置的前面插入一个节点 bool Insert_Node_toList(LinkedList &L, int i, int e); //将单链表的第i个节点删除 bool Del_Node_InList(LinkedList &L, int i); //获取单链表第首个e元素的位置 int GetLocation_Val_fromList(LinkedList &L...