數據結構實驗之鏈表三:鏈表的結點插入

#include<stdio.h> #include<stdlib.h> struct node { int data; struct node *next; }*head; int len; void insert(int mi, int xi) { int i; struct node *p, *q; p = head; for(i = 1; i
相關文章
相關標籤/搜索