C链表实现丢手绢问题(约瑟夫问题)

#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> typedef int DataType; typedef struct Node { DataType data; struct Node * next; }Node, *pNode; pNode cur = NULL;//当前节点 pN
相关文章
相关标签/搜索