单向循环链表改为双向循环链表

   日期:2020-08-23     浏览:132    评论:0    
核心提示:#include #include using namespace std;const int flag = -1;typedef struct SiLinkCirList{ int data; struct SiLinkCirList *next, *prior;}*List;//创建单向循环

#include <iostream> 
#include <cstdlib>
using namespace std;
const int flag = -1;
typedef struct SiLinkCirList{
	int data;
	struct SiLinkCirList *next, *prior;
}*List;
//创建单向循环链表
void creSiLinkCirList(List &L){//system("pause");
	int x;
	L = (List)malloc(sizeof(SiLinkCirList));
	List r = L;
	while(cin>>x && x!=flag){
		List s = (List)malloc(sizeof(SiLinkCirList));
		s->data = x;
		r->next = s;
		r = s;
	}
	r->next = L;
}
//输出单向循环链表
void printSiCirList(List L){
	List p = L->next;
	cout << "当前的单向循环链表为:";
	while(p != L){
		cout << p->data << " ";
		p = p->next;
	}
	cout << endl;
}
//转换成双向循环链表
void trDouCirList(List &L) {
	List p = L;
	List s;
	while(1){
		s = p->next;
		s->prior = p;
		if(p->next==L)
			break;
		p = p->next;
	}
	L->prior = p;	
}
//根据prior输出链表
void printByPrior(List L) {
	List p = L->prior;
	cout << "反向输出的循环链表为:" ;
	while(p != L){
		cout << p->data << " ";
		p = p->prior;
	}
	cout << endl;
}
int main(){
	List L;
	cout << "输入单向循环链表元素:";
	creSiLinkCirList(L);
	printSiCirList(L);
	trDouCirList(L);
	printByPrior(L);
	return 0;
}
 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服