题解 1213: 幸运儿

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

筛选

优质题解

幸运儿-题解(Java代码)

摘要:首先是输入,输入n之后,就把1~(n-1)的值,赋值进数组中,这样得到一个有序数组,这样输出的时候就是按照升序排列 然后模拟一下过程(红色字是被删除的,黑色字是剩下的) ![](/image_ed……

幸运儿 (Java代码)(单链表实现)

摘要:解题思路: 本题使用单链表实现,循环链表也可以处理,逻辑差不多,只是控制不同而已。注意事项:  每次都是从第一个开始读数参考代码:import java.util.Scanner; public……

幸运儿 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[51],b[49],k,flag,i,n,count,temp; while(scanf("%d",……

幸运儿 (Java代码)

摘要:解题思路:注意事项:参考代码: public class 幸运儿 { public static void main(String[] args) { // TODO Auto-gen……

幸运儿 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct Node{ int num; struct Node *next;……

幸运儿-题解(Python代码)

摘要:我是用列表做的 ```python while True: n=int(input()) lis=[] #新建列表盛放总数 for i in range(1,n+1)……

幸运儿(C语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>void Lucky(int n,int arr[n]){    int people[n];   ……

幸运儿(数组)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n;bool flag[100];bool f(){    int num=……