#include <stdio.h>
#include <stdlib.h>
typedef struct LNode
{
int Number;
struct LNode * next;
} LNode;
int main(int argc, char const *argv[])
{
int key,N,count;
count=1 ;//设count为传递次数
key = 2 ;//用于给每一个元素编号
scanf("%d",&N);
LNode *C = (LNode *)mallo...