摘要: Circle List puzzle Josephus Story: there is 41 people , 39 of them have the agreement that: all these 41 people stand as a circle, and one of them cou 阅读全文
posted @ 2017-09-14 22:41 ReedyLi 阅读(209) 评论(0) 推荐(0)
摘要: #include #include typedef struct CLinkList { int data; struct CLinkList *next ; } node; /*initiate a circle list*/ void ds_init(node **pNode) { int item; node *temp; no... 阅读全文
posted @ 2017-09-14 22:01 ReedyLi 阅读(190) 评论(0) 推荐(0)