資料結構實驗之鍊表三 鍊錶的逆置

2021-07-29 01:46:43 字數 892 閱讀 8652

time limit: 1000ms

memory limit: 65536kb

submit

statistic

problem description

輸入多個整數,以-1作為結束標誌,順序建立乙個帶頭結點的單鏈表,之後對該單鏈表的資料進行逆置,並輸出逆置後的單鏈表資料。

input

輸入多個整數,以-1作為結束標誌。

output

輸出逆置後的單鏈表資料。

example input

12 56 4 6 55 15 33 62 -1

example output

62 33 15 55 6 4 56 12

hint

不得使用陣列。

author

#include

#include

struct node ;

void re(struct node * head,int n)

p=(struct node *)malloc(sizeof(struct node));

p->data=n;

p->next=null;

tail->next=p;

tail=p; }

struct node *ar(struct node * head)

return head; }

int main()

printf("%d\n",p->data);

return 0; }

///解決一直輸入的情況

/**struct node * creat(struct node * head)

return head;

};*/

資料結構實驗之鍊表三 鍊錶的逆置

time limit 1000ms memory limit 65536k 輸入多個整數,以 1作為結束標誌,順序建立乙個帶頭結點的單鏈表,之後對該單鏈表的資料進行逆置,並輸出逆置後的單鏈表資料。輸入多個整數,以 1作為結束標誌。輸出逆置後的單鏈表資料。12 56 4 6 55 15 33 62 1...

資料結構實驗之鍊表三 鍊錶的逆置

資料結構實驗之鍊表三 鍊錶的逆置 輸入多個整數,以 1作為結束標誌,順序建立乙個帶頭結點的單鏈表,之後對該單鏈表的資料進行逆置,並輸出逆置後的單鏈表資料。輸入多個整數,以 1作為結束標誌。輸出逆置後的單鏈表資料。12 56 4 6 55 15 33 62 1 62 33 15 55 6 4 56 1...

資料結構實驗之鍊表三 鍊錶的逆置

time limit 1000ms memory limit 65536k 輸入多個整數,以 1作為結束標誌,順序建立乙個帶頭結點的單鏈表,之後對該單鏈表的資料進行逆置,並輸出逆置後的單鏈表資料。輸入多個整數,以 1作為結束標誌。輸出逆置後的單鏈表資料。12 56 4 6 55 15 33 62 1...