PATA1052.Linked List Sorting

题目链接:点击打开链接

知识点笔记:

AC代码:

#include 
#include 
using namespace std;
const int maxn = 100010;
struct Node{
	int key,address,next;
	bool flag=false;//结点是否在链表上
}node[maxn];

bool cmp(Node a,Node b){
	if(a.flag==false || b.flag==false) return a.flag>b.flag;
	else return a.key>n>>first;
	int address;
	for(int i=0;i

你可能感兴趣的:(PATA)