BJFU 233双向循环链表中结点的交换

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include<queue>
using namespace std;


//结点
typedef struct Lnode {
	int data;
	struct Lnode *next;
}Lnode, *Linklist;

//尾插
void Creatlist(Linklist &L, int &e) {
	Lnode *p = new Lnode;
	p->data = e;
	p->next = NULL;  //处理新加入节点

	Lnode *cur = L;
	while (cur->next != NULL) {
		cur = cur->next;
	}
	cur->next = p;
	p->next = NULL;

}

//初始化
void Initlist(Linklist &L) {
	L = new Lnode;
	L->next = NULL;
}

//交换(指定结点he前驱节点)
void Exchange(Linklist &L1,int &pos) {
	Lnode *pre = L1;
	Lnode *cur =pre->next;
	while (pos>1&&cur!=NULL)
	{
		pre = pre->next;
		cur = pre->next;
		pos--;
	}
	int data = pre->data;
	pre->data = cur->data;
	cur->data = data; //交换节点元素值
}

//打印
void Print(Linklist &L1) {
	Lnode *cur = L1->next;
	while (cur->next) {
		printf("%d ", cur->data);
		cur = cur->next;
	}
	cout << cur->data << endl;
}


int main() {
	int n;
	while (scanf("%d",&n)!=EOF) {
		if (n == 0) break;
	    Linklist L1;  
		Initlist(L1);

		for (int i = 0; i < n; i++) { //输入数据
			int e;
			cin >> e;
			Creatlist(L1, e);
		}
		int pos;  
		cin >> pos; //指定位置
		Exchange(L1, pos);
		Print(L1);//打印		
	}
}







  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值