1. 首页
  2. 课程学习
  3. C++/C
  4. 约瑟夫问题C++做法

约瑟夫问题C++做法

上传者: 2019-01-02 02:03:38上传 CPP文件 1.1KB 热度 31次
用链表与循环完成约瑟夫问题 while (cin>>x>>y) { node *p, *q; //建立循环链表 for (i = 1; i head = new node; list->head->data = i; q = list->head; continue; } p = new node; p->data = i; q->next = p; q = q->next; } q->next = list->head; c = x; p = list->head; q = p; list->count = 1;
用户评论