数据结构-1 02-线性结构3 Reversing Linked List
摘要:
1 #include<stdio.h> 2 #define MAXN 100000 3 struct node{ 4 int data,next; 5 int nextr; 6 }; 7 struct node a[MAXN]; 8 int n,k,start,startr; 9 void read 阅读全文
posted @ 2020-03-31 23:18 chenxi16 阅读(99) 评论(0) 推荐(0) 编辑