按照與輸入順序相反的順序創建單鏈表

好比說輸入1 2 3 輸出應該是 3 2 1node #include<stdio.h>測試 #include<stdlib.h> struct node { int data; struct node *next; }; void CreateLink(struct node *head) {//逆序創建單鏈表 struct node *p=head,*q; int x; printf("請輸入
相關文章
相關標籤/搜索