C语言实现链表基本操作(交换第i个和第j个节点)
#include <stdio.h>#include <malloc.h>typedef struct node{ char ID[20]; int Score; struct node * Next;}Node, * List;void Insert(List *L, Node e){ List temp = *L; List n = (List)malloc(sizeof(Node)); n-&