单链表的建立 C语言实现

#include <stdlib.h>
#include <stdio.h>
#include <malloc.h>

struct LNode
{
	int data;
	struct LNode *next;
};

//创建链表,count为创建的链表的节点数目
struct LNode *create(int count)
{
	int i;
	struct LNode *pNode = NULL;
	struct LNode *pNewNode = NULL;
	struct LNode *head = NULL;

	printf("Input the integers :\n");
	for(i = count;i > 0;i--)
	{
		pNewNode = (struct LNode*)malloc(sizeof(struct LNode));//分配节点空间
		scanf_s("%d",&pNewNode->data);

		if(head == NULL)	//指定头结点
		{
			head = pNewNode;
			pNode = pNewNode;
		}
		else
		{
			pNode->next = pNewNode;
			pNode = pNewNode;
		}
	}
	
	pNode->next = NULL;
	return head;
}

//入口函数
int main()
{
	int count;//链表节点数
	struct LNode *node;
	printf("Input the count of nodes you want to create:");
	scanf_s("%d",&count);

	node = create(count);
	printf("The result is :\n");
	while(node)
	{
		printf("%d",node->data);
		node = node->next;
	}
	system("pause");
}






建立单链表的代码如下:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值