CSP 201712-2游戏

#include <stdio.h> struct node { int num; struct node *next; }; int main() { struct node *L,*p,*pre,*r; int n,k,i,j; scanf("%d%d",&n,&k); L=(struct node *)malloc(sizeof(struct node)); L->num=1;r=L; fo
相关文章
相关标签/搜索