c语言单向链表逆序(c语言单向链表实现快速排序)

本篇文章给大家谈谈c语言单向链表逆序,以及c语言单向链表实现快速排序对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。

本文目录一览:

1、用c语言实现链表的合并和逆序2、单循环链表的逆置(C语言)3、C语言链表倒序4、c语言,链表的反转怎么写代码?

用c语言实现链表的合并和逆序

#include stdio.h

#include stdlib.h

typedef struct Node

{

int num;

struct Node* nextptr;

}Node;

void printList(Node head)

{

Node *cptr= head.nextptr;

while(cptr!=NULL)

{

//printf(“%x: %d|%x-\n”,cptr, cptr-num, cptr-nextptr);

printf(“%d “,cptr-num);

cptr= cptr-nextptr;

}

printf(“\n”);

}

void freeList(Node head)

{

Node *nptr, *cptr= head.nextptr;

while(cptr != NULL)

{

nptr= cptr-nextptr;

free(cptr);

cptr= nptr;

}

}

Node* newNode(const int ipt_num)

{

static Node *newptr;

newptr=(Node*)malloc(sizeof(Node));

newptr-num= ipt_num;

newptr-nextptr= NULL;

return newptr;

}

Node merger(Node la, Node lb)

{

Node lc, *cptr= lc;

Node *aptr= la.nextptr;

Node *bptr= lb.nextptr;

while(aptr!=NULL || bptr!=NULL)

{

if(aptr!=NULL  bptr!=NULL)

{

if(aptr-num  bptr-num)

{

cptr-nextptr= newNode(aptr-num);

aptr= aptr-nextptr;

}

else if(aptr-num  bptr-num)

{

cptr-nextptr= newNode(bptr-num);

bptr= bptr-nextptr;

}

else{

cptr-nextptr= newNode(aptr-num);

aptr= aptr-nextptr;

bptr= bptr-nextptr;

}

}

else{

if(aptr==NULL)

{

cptr-nextptr= newNode(bptr-num);

bptr= bptr-nextptr;

}

else{//bptr==NULL

cptr-nextptr= newNode(aptr-num);

aptr= aptr-nextptr;

}

}

cptr= cptr-nextptr;

cptr-nextptr= NULL;

}

return lc;

}

void inverted(Node la, Node lb)

{

Node newnode, *cutptr;

newnode.nextptr=NULL;

while(la.nextptr!=NULL || lb.nextptr!=NULL)

{

if(la.nextptr!=NULL  lb.nextptr!=NULL)

{

if(la.nextptr-num  lb.nextptr-num)

{

cutptr= la.nextptr;

la.nextptr= la.nextptr-nextptr;

}

else{

cutptr= lb.nextptr;

lb.nextptr= lb.nextptr-nextptr;

}

}

else{

if(la.nextptr!=NULL)

{

cutptr= la.nextptr;

la.nextptr= la.nextptr-nextptr;

}

else{

cutptr= lb.nextptr;

lb.nextptr= lb.nextptr-nextptr;

}

}

cutptr-nextptr= newnode.nextptr;

newnode.nextptr= cutptr;

}

la= newnode;

}

int main(void)

Node la, lb, lc;

Node *curptr;

curptr= la;

curptr-nextptr= newNode(3);

curptr= curptr-nextptr;

curptr-nextptr= newNode(5);

curptr= curptr-nextptr;

curptr-nextptr= newNode(8);

curptr= curptr-nextptr;

curptr-nextptr= newNode(11);

curptr= lb;

curptr-nextptr= newNode(2);

curptr= curptr-nextptr;

curptr-nextptr= newNode(6);

curptr= curptr-nextptr;

curptr-nextptr= newNode(8);

curptr= curptr-nextptr;

curptr-nextptr= newNode(9);

curptr= curptr-nextptr;

curptr-nextptr= newNode(11);

curptr= curptr-nextptr;

curptr-nextptr= newNode(15);

curptr= curptr-nextptr;

curptr-nextptr= newNode(20);

printList(la);

printList(lb);

lc= merger(la,lb);

printList(lc);

inverted(la,lb);

printList(la);

freeList(la);

freeList(lb);

freeList(lc);

printf(“end”); 

return 0;

}

单循环链表的逆置(C语言)

//单循环链表的逆置

#include stdio.h

#include malloc.h

#include math.h

#include process.h

typedef struct lnode

{

int data;

struct lnode *next;

}lnode ,*linklist;

//建立一个空表,初始化,并对其进行输入值

void creatlinklist(linklist l,int n)

{

l=(linklist)malloc(sizeof(lnode));

if(!l)

exit(OVERFLOW);

l-next=l;//循环链表

linklist p,q;

int i;

q=l;

printf(“please input %d data:\n”,n);

for(i=0;i=n-1;i++)

{

p=(linklist)malloc(sizeof(lnode));

scanf(“%d”,p-data);

p-next=q-next;

q-next=p;

q=p;

}

}

//逆置函数

void invert(linklist l)

{

linklist p,q,r;

p=l-next;

q=p-next;

r=q-next;

while(p!=l)

{

q-next=p;

p=q;

q=r;

r=r-next;

}

}

int main()

{

linklist l,p;

int length,i;

printf(“please input the length of the list:\n”);

scanf(“%d”,length);

creatlinklist(l,length);

p=l-next;

while(p!=l)

{

printf(“%d “,p-data);

p=p-next;

}

printf(“\n”);

invert(l);

p=l-next;

while(p!=l)

{

printf(“%d “,p-data);

p=p-next;

}

printf(“\n”);

return 0;

}

c语言单向链表逆序(c语言单向链表实现快速排序)

C语言链表倒序

你得在p2-next=p3;后面加一句:p2=p3;否则你的p2一直是指向head。

c语言,链表的反转怎么写代码?

单链表反转很简单,只说下思路:

1,从头到尾循环遍历链表

2,取下头结点,作为尾结点,尾结点此时也为头结点

3,采用前插法,将步骤二中取下的结点一个一个连接到头结点前面,成为新的头结点。

4,链表全部遍历完后,新的链表产生了,是原来链表的反转。

c语言单向链表逆序的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于c语言单向链表实现快速排序、c语言单向链表逆序的信息别忘了在本站进行查找喔。

本文来自投稿,不代表【】观点,发布者:【

本文地址: ,如若转载,请注明出处!

举报投诉邮箱:253000106@qq.com

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2024年4月1日 12:24:00
下一篇 2024年4月1日 12:33:18

相关推荐

  • c语言改写模式,c语言实现修改功能

    c语言程序修改? 1、这个程序有4个错误,我都加粗了,第一个是m没有赋初值,第二个是while表达式中的ch=getchar()需要括号括起来,第三个是m=m*10+ch-0中的0也需要用单引号括起来,第四个是第2个while中为m!=0。 2、define容易造成误会,因为不符合一般的编程习惯,false 0, true 1;scanf放在你的那个地方是达…

    2024年5月23日
    4100
  • c语言控制代码的换码序列,c语言交换代码

    求C语言编程大神解答一下下面这个编程代码? k==5,用5去除125余0,所以r=125%5中r为0。由于!0为1,所以执行while循环体:先打印出5(k的值),再n=n/k==125/5=25;由于251则再打印出*号。这一循环结果输出是5*。 下面是我的代码,三个函数分别对应三个问题。 在实现基本要求的前提下,拓展了可以从键盘输入的功能,以下为各题代码…

    2024年5月23日
    5800
  • c语言扫描io脚状态,c语言端口扫描

    求51单片机的上升沿和下降沿C语言检测程序列子,端口就是普通IO口。 上升沿触发是当信号有上升沿时的开关动作,当电位由低变高而触发输出变化的就叫上升沿触发。也就是当测到的信号电位是从低到高也就是上升时就触发,叫做上升沿触发。 单片机怎么计算1s内下降沿的个数的C语言程序或者计算两个下降沿的时间(检测脉冲频率)计算1s内下降沿的个数方法是,一个定时器设置定时1…

    2024年5月23日
    4500
  • c语言mallloc使用的简单介绍

    C语言中使用malloc必须加#includemallo.h? 1、在C语言中使用malloc函数进行动态内存分配。malloc的全称是memory allocation,中文叫动态内存分配。原型:extern void malloc(unsigned int num_bytes);功能:分配长度为num_bytes字节的内存块。 2、你可以看一下C语言那本…

    2024年5月23日
    4500
  • c语言三位小数,C语言三位小数

    怎样用C++语言输出精确到小数点后三位的数? 1、用C++语言输出精确到小数点后三位的数,可以参考下面给出的代码:coutsetiosflags(ios:fixed)setprecision(3)。其中 setiosflags中set是设置的意思。ios是iostream的缩写,即输入输出流。flags是标志的意思。 2、要精确到小数点后若干位,则数据类型为…

    2024年5月23日
    7500
  • c语言21点游戏,二十一点游戏代码c语言

    如何使用C语言编写简单小游戏? 1、数学知识:长方形的面积S=a*b 长方形周长L=2*(a+b)其中a b分别为长方形的宽和高。算法分析:长方形面积及周长均依赖于宽和高,所以先要输入宽高值,然后根据公式计算,输出结果即可。 2、/*也不知道你是什么级别的,我是一个新手,刚接触编程语言,以下是我自己变得一个小程序,在所有c语言的编译器(vc++0、turbo…

    2024年5月23日
    6500
  • c语言当中的null,C语言当中的符号

    C/C++中,NULL和null的区别是什么? nul 和 null要看编译器,不同的编译器有所区别。 所以C或者C++中都使用一个特殊定义NULL表示无效值,其本质就是未定义具体数据类型的0值。 null是是什么都没有的意思。在java中表示空对象。 本意是“空的;元素只有零的”意思。计算机中通常表示空值,无结果,或是空集合。\x0d\x0a在ASCII码…

    2024年5月23日
    4700
  • 包含c语言对txt文件命名的词条

    如何在C语言编程里面修改源文件名字 如果你是在WINDOWS的话,简单了,随便用个编辑器,比如记事本,然后写c源程序,保存到你想要保存的位置。如果你在DOS下,可以用edit,写好以后,按alt键,选择文件菜单,然后保存。 用open打开文件,注意操作模式使用“修改”或者“添加” 用write或者fprintf向文件中写入你的内容。 用close关闭文件。 …

    2024年5月23日
    5000
  • 学c语言编程,学c语言编程用什么软件

    编程开发必须要学C语言吗? 1、要学习。编程开发的学习内容主要包括c语言、python和c+语言。C语言作为一种简单灵活的高级编程语言,它是一个面向过程的语言,一般是作为计算机专业的基础入门语言课程。 2、C语言。对于刚接触编程的人来说,先学习C语言是非常重要的。C语言可以说是是计算机编程语言的鼻祖,其他的编程语言几乎全是由C语言变化衍生出来的。 3、不需要…

    2024年5月23日
    3500
  • c语言用string定义字符串,c语言中用string类型来处理字符串类型

    C++怎样定义定义字符串 1、第一是字符数组来表示字符串。用下面的语句声明:char a[10];C语言中字符数组与字符串的唯一区别是字符串末尾有一个结束符\0,而字符数组不需要。 2、在C中定义字符串有下列几种形式:字符串常量,char数组,char指针 字符串常量 即:位于一对双括号中的任何字符。双引号里的字符加上编译器自动提供的结束标志\0字符,作为 …

    2024年5月23日
    4500

发表回复

登录后才能评论



关注微信