我是靠谱客的博主 悲凉香氛,最近开发中收集的这篇文章主要介绍数据结构C语言版 题集 部分解答,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2.20 顺序表的就地逆置
inverse_SqList(int arr[], size_t len)
算法: 前一半和后一半交换
void  inverse( int  a[], size_t len)
{
    assert(len 
> 0);
    
for(int i = 0; i < len/2; i++)
    
{
        swap(a[i], a[len
-1-i]);
    }

}

2.21 单链表的就地逆置
inverse_LinkList(LinkNode *head)
算法: 先将头节点和第一个节点断开, 然后从第1个节点开始将每个节点插入到头节点后(即成为第1个节点)
inverse_LinkList(LinkNode  * head)
{
    assert(head 
!=  NULL  &&  head -> next  !=  NULL);

    LinkNode 
* curPtr,  * NextPtr;
    curPtr 
=  head -> next;
    
while (curPtr  !=  NULL)
    {
        nextPtr 
=  curPtr -> next;

        curPtr
-> next  =  head -> next;
        head
-> next  =  curPtr;

        curPtr 
=  nextPtr;
    }
}

转载于:https://www.cnblogs.com/chio/archive/2007/10/14/923907.html

最后

以上就是悲凉香氛为你收集整理的数据结构C语言版 题集 部分解答的全部内容,希望文章能够帮你解决数据结构C语言版 题集 部分解答所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部