题解 1047: [编程入门]报数问题

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

(C语言代码)

摘要:#include<stdio.h> #include"malloc.h" typedef struct node {     int num;     struct node *next; ……

约瑟夫的环

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class wc {static Scanner sc=new Scanner(System.in);pu……

约瑟夫环

摘要:解题思路:用一个数组来存放每个人的编号,用变量to来记录除去的人数,用一个while(to!=n-1)循环,循环中先判断当前人员的编号是否为0,如果为0,就接着循环,如果不为0,则变量s+1;当s==……

list解决报数问题

摘要:解题思路: 通过list链表,动态删除报到3的元素注意事项: 记得说明如果指针指向end,就换到begin位参考代码:#include<iostream>#include<list>using nam……