1247: 筛排处理 摘要:```cpp #include #include using namespace std; int main() { int n; while(cin>>n&&n) …… 题解列表 2023年02月01日 0 点赞 0 评论 107 浏览 评分:9.9
筛排处理,气死我了这题!!! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量a和数组d,其中d的大小为1…… 题解列表 2024年11月18日 0 点赞 1 评论 62 浏览 评分:9.9
筛排处理-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int zhixing(int *p,int low,int high){…… 题解列表 2020年04月07日 0 点赞 1 评论 286 浏览 评分:9.9
1247基础解法(Python) 摘要:解题思路:列表求解,用set()做数据清洗即可注意事项:注意题目格式,输入输出的要求参考代码:import syscount = 1lst_id = []lst_num = []for line in…… 题解列表 2022年11月18日 0 点赞 0 评论 144 浏览 评分:9.9
筛排处理 (C++代码) 摘要:解题思路:运用桶排序快速去重和排序注意事项:要输出两个空行参考代码:#include <bits/stdc++.h> using namespace std; int main(){ int …… 题解列表 2018年07月08日 4 点赞 0 评论 830 浏览 评分:9.9
筛排处理 (C语言代码) 摘要:#include<stdio.h>int main(){ int x,t,i,j,n,b[100],a[100]; while(scanf("%d",&n)!=EOF&&n!=0) { x=0; …… 题解列表 2019年05月25日 0 点赞 0 评论 903 浏览 评分:9.9
筛排处理-题解(Java代码)-TreeSet 摘要:TreeSet自带去重和排序 最佳方案 ```java import java.io.BufferedInputStream; import java.util.Arrays; impor…… 题解列表 2019年08月23日 0 点赞 0 评论 649 浏览 评分:9.9