abc
defg
hijk
lm
i - 資料結構實驗之鍊表六:有序鍊錶的建立
time limit:1000msmemory limit:65536kb64bit io format:%lld & %llu
submit
status
practice
sdutoj 2121
description
輸入n個無序的整數,建立乙個有序鍊錶,鍊錶中的結點按照數值非降序排列,輸出該有序鍊錶。
input
第一行輸入整數個數n;
第二行輸入n個無序的整數。
output
依次輸出有序鍊錶的結點值。
sample input
633 6 22 9 44 5
sample output
5 6 9 22 33 44
hint
不得使用陣列!
這是我剛學會敲的!!!
#include #include struct node
*head,*p,*t,*q;
int main()
else if(i==2)
else
}else
else
else if(x>t->data&&xnext->data)
t=t->next;}}
}}
p=head->next;
while(p)
printf("\n");
}這個是看完大神**理解後又敲的一遍,看完頓時感覺自己的之前辦法好笨重啊!!!
#include #include struct node
*head,*p,*r,*q;
int main()
q=p;
p=p->next;
}if(!p)
}p=head->next;
while(p)
printf("\n");
}
資料結構實驗之鍊表六 有序鍊錶的建立
time limit 1000ms memory limit 65536k 輸入n個無序的整數,建立乙個有序鍊錶,鍊錶中的結點按照數值非降序排列,輸出該有序鍊錶。第一行輸入整數個數n 第二行輸入n個無序的整數。依次輸出有序鍊錶的結點值。6 33 6 22 9 44 5 5 6 9 22 33 44 ...
資料結構實驗之鍊表六 有序鍊錶的建立
資料結構實驗之鍊表六 有序鍊錶的建立 time limit 1000ms memory limit 65536k 輸入n個無序的整數,建立乙個有序鍊錶,鍊錶中的結點按照數值非降序排列,輸出該有序鍊錶。第一行輸入整數個數n 第二行輸入n個無序的整數。依次輸出有序鍊錶的結點值。6 33 6 22 9 4...
資料結構實驗之鍊表六 有序鍊錶的建立
time limit 1000ms memory limit 65536k 題目描述 輸入n個無序的整數,建立乙個有序鍊錶,鍊錶中的結點按照數值非降序排列,輸出該有序鍊錶。輸入 第一行輸入整數個數n 第二行輸入n個無序的整數。輸出 依次輸出有序鍊錶的結點值。示例輸入6 33 6 22 9 44 5 ...