1、Definition

Linked list consists of a series of nodes. Each nodes contains the element and a pointer which points to the next node. The last node's next link points to NULL.

Linked=data+pointer

use the pointer to describe the logical relationship

2、Implementation

template<class List_entry>
class List
{
public:
List();
int size();
bool empty();
bool full();
...
protected:
int count;
Node<List_entry> *head; //当声明一个linked时,只会拥有一个头指针
} template<class List_entry>
struct Node
{
List_entry entry; // data
Node<List_entry> *next; // point to the next node
Node();
Node(List_entry, Node<List_entry>*link=NULL);
}

3、Operations

(1)two types of insert

①在p节点所在位置插入

New(S)
S->data=a;
q->next=S;
S->next=p;

②在p节点之后插入

New(S)
S->data=a;
S->next=p->next;
p->next=S;

(2) create a linked list

In order to create a linked list, we have this algorithm

①To create a head

②To create new node S

③Insert S

void CreateList(Head)
{
new(Head);
Head->next=NULL;
scanf("%c",ch);
while(ch<>'#')do
{
new(S);
S->data=ch;
S->next=Head->next;
Head->next=S;
}
}

上述构造方式为从头构造,在头元素出一个一个地插入

下面一种是从链尾增添

void CreateList(Head)
{
new(Head);
Head->next=NULL;
Last=Head;
scanf("%c",ch);
while(ch<>'#')do
{
new(S);
S->data=ch;
S->next=NULL;
Last->next=S;
Last=S;
}
}

(3)insert an element at location i

Status ListInsert L(LinkList &L, int i, DataType e)
{
LinkList p, s;
p=L;
int j=0; while(p&&j<i-1)
{
p=p->next;
j++;
} if(!p) return ERROR;
s=(LinkList)malloc(sizeof(LNode));
s->data=e;
s->next=p->next;
p->next=s; return OK;
}

(4)Delete

Status ListDelete(LinkList &L, int i)
{
LinkList p, q;
p=L;
int j=0; while(p&&j<i-1)
{
p=p->next;
j++;
} if(!p) return ERROR; q=p->next;
p->next=q->next;
free(q);
}

(5)Search

①按位查找

Status ListSearch(LinkList &L, int i)
{
LinkList p;
int j=0;
while(p&&j<i-1)
{
p=p->next;
j++;
}
if(!p)return ERROR;
e=p->next;
return OK;
}

③按值查找

Status ListSearch(LinkList &L, DataType e)
{
LinkList p;
p=L;
int j=0;
while(p&&(p->next)!=e)
{
p=p->next;
j++;
}
if(!p)
{
cout<<"Not found"<<endl;
return ERROR;
}
else
{
return (j);
}
}

3、circular linked list

4、Doubly linked list

(1)Insert

p->next=current->next;
p->prior=current;
current->next->prior=p;
current->next=p;

(2)Delete

current->next->prior=current->prior;
current->prior->next=current->next;

 C++style code

//C++style构建链表,有头结点
//operations
/*
LenList(L)链长
GetElem(i, e)换值
SearchElem(e, i)按值查找
InertElem(i, e)插值
DeleteElem(i) 删值
*/ template<typename Type>
struct Node
{
Type data;
Node<Type>*next;
}; template<typename Type>
class LinkList
{
public:
LinkList()
{
head = new Node<Type>;
head->next = NULL;
len = 0;
Type ch;
Node<Type>*p;
while (cin >> ch)
{
p = new Node<Type>;
p->data = ch;
p->next = head->next;
head->next = p;
len++;
}
}
~LinkList()
{
Node<Type>*p = head;
while (p->next)
{
DeleteElem();
}
delete head;
} //LenList(L)链长
int LenList()
{
return len;
} //InertElem(e)从尾插值
void InsertElem(Type e)
{
Node<Type>*p = head;
while (p->next)
{
p = p->next;
} Node<Type>*q = new Node<Type>;
q->data = e;
q->next = p->next;
p->next = q;
len++;
} //InertElem(i, e)从第i位插值
void InsertElem(int i, Type e)
{
Node<Type>*p = head;
int j = 0;
while (p->next && j<i - 1)
{
j++;
p = p->next;
}
Node<Type>*q = new Node<Type>;
q->data = e;
q->next = p->next;
p->next = q;
len++;
} //GetElem(i, e)换值
void GetElem(int i, Type e)
{
int j = 0;
Node<Type>*p = head;
while (p->next && j<i - 1)
{
j++;
p = p->next;
}
p->next->data = e;
} //DeleteElem(i) 第i位删值
void DeleteElem(int i)
{
int j = 0;
Node<Type>*p = new Node;
while (p->next && j<i - 1)
{
j++;
p = p->next;
} Node<Type>*q = p->next;
p->next = q->next;
delete q; len--;
} //DeleteElem() 尾删值
void DeleteElem()
{
Node<Type>*p = head;
while (p->next->next)
{
p = p->next;
}
Node<Type>*q = p->next;
p->next = q->next;
delete q;
len--;
} //SearchElem(e)按值查找
int SearchElem(Type e)
{
Node<Type>*p = head;
int i = 0;
while (p->next && p->data != e)
{
i++;
p = p->next;
} if (i == 0)
return -1;
else return i;
}
//SearchElem(i)按位查找
Type SearchElem(int i)
{
Node<Type>*p = head;
int j = 0;
while (p->next && j<i)
{
j++;
p = p->next;
}
return p->data;
} private:
Node<Type>*head;
int len;
};

  

List------Linked 链表的更多相关文章

  1. GO语言数据结构之链表

    链表是一种物理存储单元上非连续.非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的.链表由一系列结点(链表中每一个元素称为结点)组成,结点可以在运行时动态生成.每个结点包括两个部分: ...

  2. [置顶] 一个demo学会c#

    学习了c#4.5高级编程这本书,自己喜欢边学边总结边写demo,所以写了这篇文章,包含了大部分的c#编程知识.让你一个demo掌握c#编程,如果有问题可以留言. 此demo主要包括五个文件:Stude ...

  3. 一行一行读Java源码——LinkedBlockingQueue

    1.LinkedBlockingQueue概述 Linked:链表+Blocking:阻塞+Queue:队列 Queue:首先想到的是FIFO Linked:,Queue:其结构本质上是线性表,可以有 ...

  4. java 基础词汇 必须 第九天

    Collection 集合 List 列表集合 Set 不重复集合 Linked 链表 Vector 线程安全集合 Hash 哈希值 tree 树型结构 Map 键值对集合 add 增加 remove ...

  5. 集合类(Collection和Map接口)简介

    集合分为Collection和Map,详细分类如下图所示: 以下是测试验证代码: //HashSet,无序(存取不一致).去重 Set set_H = new HashSet(); set_H.add ...

  6. [LeetCode] Linked List Random Node 链表随机节点

    Given a singly linked list, return a random node's value from the linked list. Each node must have t ...

  7. [LeetCode] Plus One Linked List 链表加一运算

    Given a non-negative number represented as a singly linked list of digits, plus one to the number. T ...

  8. [LeetCode] Odd Even Linked List 奇偶链表

    Given a singly linked list, group all odd nodes together followed by the even nodes. Please note her ...

  9. [LeetCode] Delete Node in a Linked List 删除链表的节点

    Write a function to delete a node (except the tail) in a singly linked list, given only access to th ...

  10. [LeetCode] Palindrome Linked List 回文链表

    Given a singly linked list, determine if it is a palindrome. Follow up: Could you do it in O(n) time ...

随机推荐

  1. java登录密码效验

    密码校验需求: 1) 密码控制只能输入字母.数字.特殊符号(~!@#$%^&*()_+[]{}|\;:'",./<>?)2) 长度 6-16 位,必须包括字母.数字.特殊 ...

  2. 类加载class loader

    Class装载验证流程: 加载:取得类的二进制流,转为方法区的数据结构,在java堆中生成对应的java.lang.class对象 链接:就是将已经读入到内存的类的二进制数据合并到虚拟机的运行时环境中 ...

  3. jQuery(5)——动画

    jQuery中的动画 [show()方法和hide()方法] 在HTML文档中,为一个元素调用hide()方法,会将该元素的display样式改为“none”,show()方法将元素的display样 ...

  4. EasyUI 日期选择插件封装成选择到月份的插件

    将普通的日期选择插件封装成选择到月份的插件:                     var nowMonth = new Date();                    var month = ...

  5. react起步

    react是一个用于构建用户界面JAVASCRIPT库. react主要用于构建UI,是MVC中的V(视图). react特点 1.声明式设计 2.高效 3.灵活 4.JSX 5.组件 6.单项响应的 ...

  6. Java web项目综合练习(Estore)

    Java web项目综合练习(Estore) 复习day18: ajax代码的书写步骤 2)json格式文本,转js对象的方法是那个 项目开发流程介绍 这里学习的JavaWEB项目实战,主要是把前面学 ...

  7. HDU 3404&POJ 3533 Nim积(二维&三维)

    (Nim积相关资料来自论文曹钦翔<从"k倍动态减法游戏"出发探究一类组合游戏问题>) 关于Nim积计算的两个函数流程: 代码实现如下: ][]={,,,}; int N ...

  8. Zeppelin使用phoenix解释器

    Interpreters设置

  9. Gitlab命令行指令

    Git global setup git config --global user.name "lh" git config --global user.email "l ...

  10. AUTO_INCREMENT列在InnoDB里如何工作

    如果你为一个表指定AUTO_INCREMENT列,在数据词典里的InnoDB表句柄包含一个名为自动增长计数器的计数器,它被用在为该列赋新值.自动增长计数器仅被存储在主内存中,而不是存在磁盘上. Inn ...