https://pta.patest.cn/pta/test/15/exam/3/question/724

Posted 胡韬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了https://pta.patest.cn/pta/test/15/exam/3/question/724相关的知识,希望对你有一定的参考价值。

List Reverse( List L )
{
if(L==NULL)
return;
List head=(List)malloc(sizeof(struct Node));
head->Next=NULL;
List q=L,p;
while(q!=NULL)
{
p=q;
q=q->Next;
p->Next=head->Next;
head->Next=p;
}
return head->Next;
}

以上是关于https://pta.patest.cn/pta/test/15/exam/3/question/724的主要内容,如果未能解决你的问题,请参考以下文章

PTA 09-排序1 排序 (25分)

PTA 09-排序2 Insert or Merge (25分)

PTA 10-排序4 统计工龄 (20分)

PTA 09-排序3 Insertion or Heap Sort (25分)

PTA 10-排序6 Sort with Swap(0, i) (25分)

浙大数据结构慕课_排序