数据结构实验之移动小球

数据结构实验之移动小球

Description
给你n个小球,从左到右编号依次为1,2,3,4,5,6…n排成一行。现在有以下2种操作:A x y表示把编号为x小球移动到编号为y的小球的左边(和y相邻)。Q x为询问编号为x的小球左边的球号,如果x左边没有小球的话输出"cyk666"。

Input
第一行输入一个T,表示有T组测试数据。(1<=T<=100)

随后每一组测试数据第一行是两个整数N,M,其中N表示球的个数(1 随后有M行询问,第一个字符是操作类型s。

当s为’A’时,输入x,y表示把编号为x小球移动到编号为y的小球的左边。

当s为’Q’时,输入x表示询问小球x左边的球号。保证(1<=x<=N,1<=y<=N,1<=N<=100000)

Output
输出每次询问的球号,如果这样的小球不存在,输出"cyk666"(不包括引号)。

Sample
Input
1
6 5
A 1 2
A 1 4
A 3 5
Q 5
Q 2
Output
3
cyk666

#include <stdio.h>
#include <stdlib.h>
struct node
{
	int data;
	struct node* next;
};
int main()
{
	int n, m, i, a, b,t;
	char ch;
	struct node* head, * tail,* p,*q,*w;
	scanf("%d", &t);
	while (t--)
	{
		head = (struct node*)malloc(sizeof(struct node));
		head->next = NULL;
		tail = head;
		scanf("%d %d", &n, &m);
		for (i = 1; i <= n; i++)
		{
			p= (struct node*)malloc(sizeof(struct node));
			p->data = i;
			p->next = NULL;
			tail->next = p;
			tail = p;
		}
		while (m--)
		{
			getchar();//吃掉回车
			scanf("%c", &ch);
			if (ch == 'A')
			{
				scanf("%d %d", &a, &b);
				w = head;
				p = head->next;
				while (p->data!=a)
				{
					p = p->next;
					w = w->next;
				}
				w->next = p->next;
				w = head;
				p = head->next;
				while (p->data != b)
				{
					p = p->next;
					w = w->next;
				}
				q = (struct node*)malloc(sizeof(struct node));
				q->next = NULL;
				q->data = a;
				w->next = q;
				q->next = p;
			}
			else if(ch=='Q')
			{
				scanf("%d", &a);
				p = head;
					while (p->next->data != a&&p)
					{
						p = p->next;
					}
					if (p == head || p == NULL)
					{
						printf("cyk666\n");
					}
					else
					{
						printf("%d\n", p->data);
					}
			}
		}
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值