微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

【数据结构】链式存储单链表


数据结构单链表的链式存储实现


//======================================================================  
//  
//        copyright (C) 2014-2015 SCott      
//        All rights reserved  
//  
//        filename: List.c
//        description: a demo to display SeqList
//  
//        created by SCott at  01/28/2015 
//        http://blog.csdn.net/scottly1
//  
//======================================================================  

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

#define TRUE	1
#define FALSE	1

typedef int Status;
typedef int ElementType;

typedef struct _tag_Node
{
	ElementType data;
	struct _tag_Node *next;
}NODE,*PNODE;


PNODE initList()
{
	int i,j = 0;
	int nLen;
	PNODE pHead = NULL;
	PNODE pNode = NULL;	

	printf("Input The Length:");
	scanf("%d",&nLen);

	pHead = (PNODE)malloc(sizeof(NODE));
	pHead->data = nLen;                      // 头结点数据域可用于存储如链表长度等信息。
	pHead->next = NULL;

	for(i=0; i<nLen; ++i,++j)
	{
		pNode = (PNODE)malloc(sizeof(NODE));
		printf("Input The %d val:",nLen-j);
		scanf("%d",&(pNode->data));

		pNode->next = pHead->next;           // 注意链表的生成技巧!
		pHead->next = pNode;
	}

	return pHead;
}


Status traverseList(PNODE list)
{
	int i = 1;
	PNODE p = list->next;
	ElementType data;

	while(p)
	{
		data = p->data;
		printf("The %d Data is:%d\n",i++,data);
		p = p->next;
	}

	printf("The Length of List is %d\n\n",list->data);

	return TRUE;
}


Status deleteNode(PNODE list,int pos,PNODE ret)
{
	int i = 0;
	PNODE pHead = list;
	PNODE pTmp =  NULL;

	if(!pHead || pos <=0 || pos >pHead->data)
	{
		return FALSE;
	}

	while(pHead->next && i<pos-1)
	{
		pHead = pHead->next;
		i++;
	}

	if(!pHead || i>pos-1)
	{
		return FALSE;
	}

	pTmp = pHead->next;
	pHead->next = pTmp->next;
	free(pTmp);
	--list->data;

	return TRUE;
}


Status insertNode(PNODE list,PNODE node)
{
	int i = 0;
	PNODE pHead = list;

	if(!pHead || pos <=0) //pos >pHead->data
	{
		return FALSE;
	}

	while(pHead->next && i<pos-1)
	{
		pHead = pHead->next;
		++i;
	}

	node->next = pHead->next;
	pHead->next = node;
	++list->data;

	return TRUE;
}


int main()
{
	PNODE list;
	PNODE ret;
	PNODE node;

	list = initList();
	traverseList(list);

	// 删除测试
	deleteNode(list,2,ret);
	traverseList(list);

	// 插入测试
	node = (PNODE)malloc(sizeof(NODE));
	node->data = 100;
	insertNode(list,node);    // not success
	insertNode(list,1000,node); // insert in last
	traverseList(list);

	return 0;
}

注:原创文章,转载请注明出处:http://blog.csdn.net/scottly1/article/details/43247465

原文地址:https://www.jb51.cc/datastructure/382715.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐