/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param m int整型 * @return int整型 */ #include<stdlib.h> //开辟链表 typedef struct people { int n; //序号 struct people* next; }peo; void kai_pi(peo*pe,int n) //开辟大小为n的链表。 { peo* p = pe; //保留头部指针。 peo* newNode = NULL; int i = 2; //链表的头部我提...