1.概念
循环链表最后一个节点
的指针域指向头结点
,整个链表形成一个环。
2.遍历
单链表遍历判别条件为p!=NULL
循环链表为p!=L
3.实例
#include <iostream>
#include <string.h>
#define OK 1
#define ERROR 0
using namespace std;
typedef struct node{
int data;
struct node*next;
}node,*Lnode;
void init(Lnode &L)
{
L=new node;
L->next = NULL;
}
void add(Lnode &L,Lnode &R,int d)
{
node *n=new node;
n->data=d;
n->next=NULL;
R->next=n;
R=n;
}
void display(Lnode L,Lnode R)
{
node *p=NULL;
p=L->next;
while(p!=R)
{
cout<<"==>"<<p->data;
p=p->next;
}
cout<<"==>"<<R->data;
}
void newlist(Lnode &L,Lnode &R)
{
int n=1;
while(n)
{
int t;
cout<<"InPut.";cin>>t;
add(L,R,t);
cout<<" Do you want new a node[1/0] agin?"<<endl;
cin>>n;
}
R->next=L->next;
}
int main()
{
Lnode L,R;
init(L);
R=L;
newlist(L,R);
display(L,R);
}
4.运行结果