2913: 整数去重 摘要:```cpp #include using namespace std; int main() { int n,a[20001],j=1; cin>>n; for(int i=1;…… 题解列表 2023年01月05日 0 点赞 3 评论 279 浏览 评分:7.3
2913:【桶】整数去重_C++解法 摘要:解题思路:用bucket数组来标记该数字是否已经输出过。若为0,则可以输出;若不为0,则已经输出过,不用输出注意事项:bucket数组下标表示的是数列中的数字,所以数组长度大于100即可。同时将buc…… 题解列表 2023年01月31日 0 点赞 0 评论 257 浏览 评分:9.9
整数去重 思路清晰 摘要:解题思路:先输入数字 然后对数字本身遍历如果相同c=1并退出, 如果不同c=0并把不重复的值赋给b数组 最后输出b数组的元素即可注意事项:参考代码:#include<stdi…… 题解列表 2023年02月16日 0 点赞 0 评论 410 浏览 评分:9.9
普通的写法 摘要:```cpp #include #include #include using namespace std; const int N=20000; int a[N],b[N]; int …… 题解列表 2023年05月01日 0 点赞 1 评论 272 浏览 评分:9.9
2913整数去重 摘要:解题思路:注意事项:参考代码:public class 整数去重 { public static void main(String [] args){ Scanner sc=new…… 题解列表 2023年06月05日 0 点赞 0 评论 127 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[20000],i,j; scanf("%d", &n); for (i = 0…… 题解列表 2023年06月10日 0 点赞 0 评论 99 浏览 评分:0.0
整数去重(C++)简单又实用 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <unordered_set>#include <vector>using namespace std;int m…… 题解列表 2023年07月19日 0 点赞 0 评论 389 浏览 评分:7.3
整数去重:vector 摘要:```cpp #include using namespace std; int vis[105]={0};//标记输入是否有重复 int main() { int n; cin>>n;…… 题解列表 2023年07月20日 0 点赞 0 评论 168 浏览 评分:9.9
2913: 整数去重(C语言) 摘要: #include int main() { int n; scanf("%d", &n); int a[n]; for (int i = 0; i < n; …… 题解列表 2023年07月27日 0 点赞 0 评论 224 浏览 评分:7.3
整数去重java 使用List和Set 摘要:解题思路:注意事项:参考代码://用Set判读是否有重复的元素,用List储存没有重复的元素import java.util.*;public class Test { public stati…… 题解列表 2023年10月10日 0 点赞 0 评论 134 浏览 评分:9.9