摘要: 今天是小学期的最后一天题目是约瑟夫问题的求解,代码如下:#include<iostream>using namespace std;typedef struct node{ int data; struct node* next;};node* create(){ int n; node* head 阅读全文
posted @ 2020-07-09 21:39 不详·Christina 阅读(111) 评论(0) 推荐(0)