[Data Structure] List 链表
1 指针实现链表
#include<stdio.h>
#include<stdlib.h>
struct node{
int data;
struct node *nxt;
};
void listInsert(int a, node *head, node *p, node *t){//注意指针类型
t = head;
while(t != NULL){...
原创
2019-03-10 16:57:50 ·
166 阅读 ·
0 评论