数列排序(用选择排序法做) 摘要:```c #include int main() { int n,i,min,j,t; int a[10000]; scanf("%d",&n); for(i=0;i…… 题解列表 2022年03月11日 0 点赞 0 评论 425 浏览 评分:0.0
字符逆序(Java) 摘要:解题思路:注意事项:参考代码:import java.io.*; import java.util.*; public class Main { public static void…… 题解列表 2022年03月12日 0 点赞 0 评论 668 浏览 评分:0.0
求N内的素数(Java语言) 摘要:解题思路:注意事项:参考代码:import java.io.*; import java.util.*; public class Main { public static void…… 题解列表 2022年03月12日 0 点赞 0 评论 309 浏览 评分:0.0
如果全为负数,这个测试测不出来 摘要: int n,m; int pre = 0; int current = 0; int flag=0; int firstnum=INT_MIN; int temp_n; if…… 题解列表 2022年03月12日 0 点赞 0 评论 323 浏览 评分:0.0
循环链表解法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<bits/stdc++.h>using namespace std;int main(){ typedef st…… 题解列表 2022年03月12日 0 点赞 0 评论 335 浏览 评分:0.0
队列操作(链队列解法) 摘要: #include #include typedef struct linknode{ int data; struct linknode *next…… 题解列表 2022年03月12日 0 点赞 0 评论 442 浏览 评分:0.0
C++简短小白解法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long int i,item,sum=0;…… 题解列表 2022年03月12日 0 点赞 0 评论 351 浏览 评分:0.0
小白单纯记录自己题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int temp,j,i,m,n,a[1000],b[1000]…… 题解列表 2022年03月12日 0 点赞 0 评论 316 浏览 评分:0.0
编写题解 1106: 奖学金 摘要:解题思路:结构体由总分,学号,语数英三部分组成,然后按照代码所示的嵌套条件进行排序。注意事项:参考代码:#include<stdio.h>typedef struct Student{ int num…… 题解列表 2022年03月12日 0 点赞 0 评论 400 浏览 评分:0.0
蓝桥杯2019年第十届省赛真题-完全二叉树的权值-代码短,易懂 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2022年03月12日 0 点赞 0 评论 319 浏览 评分:0.0