20220729-1参考答案

	q->next = p;
	p->prior->next = q;
	q->prior = p->prior;
	p->prior = q;

猜你喜欢

转载自blog.csdn.net/fly_view/article/details/125878293