前插法創建單鏈表(C語言實現)

#include<stdio.h> #include<stdlib.h> struct node{     int data;//結點的數據域     struct node *next;//結點的指針域 }; int main() {     struct node *head,*p;     int i,n;     head = (struct node *)malloc(sizeof(st
相關文章
相關標籤/搜索