1025[编程入门]数组插入处理 摘要:```c #include int main(){ int a[10],number; int i,j; for (i = 0; i < 10; i++) …… 题解列表 2021年07月07日 0 点赞 0 评论 177 浏览 评分:0.0
[编程入门]数组插入处理 稍显麻烦的解法,三次循环 摘要: #include #include #define N 1000 int main() { int a[N],b[N]; …… 题解列表 2021年06月30日 0 点赞 0 评论 184 浏览 评分:0.0
1025: [编程入门]数组插入处理——题解 C 摘要:解题思路:因为是已经正排好的数组,所以直接找到比输入项大的那项之后所有项所有都往后移动就可以,如果没有比他大的就直接放在最后。注意事项:这个写法只适用于小数据量,大型数据量建议快排。参考代码:#inc…… 题解列表 2021年06月26日 0 点赞 0 评论 179 浏览 评分:0.0
简单粗暴,使用冒泡排序,将最后一个数字放在最后,然后排序后输出 摘要:```c #include int main(){ int nums[10]; for(int x=0;x…… 题解列表 2021年06月23日 0 点赞 0 评论 305 浏览 评分:0.0
【C++较复杂版解法】 摘要:参考代码:#include <iostream> using namespace std; int main() { int list[100],N,temp,i; for(i=0;i<…… 题解列表 2021年06月22日 0 点赞 0 评论 152 浏览 评分:0.0
[编程入门]数组插入处理!!新手理解,超级简单的思路!! 摘要:解题思路:两个数组;一个已经给出的排好序的数组A,一个是插入之后的数组B;找到要插入的数x的位置,即依次与比较A中的每个元素比较,找到两元素ab,,使得a<x<b,小于x的元素依序保存在数组B的第1-…… 题解列表 2021年06月14日 0 点赞 0 评论 342 浏览 评分:9.9
优质题解 1025: [编程入门]数组插入处理——题解 摘要:解题思路:这是常规思路,类似按身高排队一样,已经排好的队,你想插进去,找到比你矮的和比你高的前后两个人,之后的人往后退一步就行了。首先是输入只含有9个元素的数组a[10],用for循环依次输入。接着输…… 题解列表 2021年05月07日 0 点赞 66 评论 14775 浏览 评分:8.8
1025: [编程入门]数组插入处理(C语言) 摘要:#include <stdio.h>int main (){ int a[10]; //遍历输入 int i = 0; for (i=0;i<9;i++) { scanf("%d",&a[i])…… 题解列表 2021年05月02日 0 点赞 0 评论 129 浏览 评分:0.0
利用sort函数 摘要:解题思路:利用algorithm的sort函数对插入后的数组重新进行从小到大的排序注意事项:参考代码:#include<iostream>#include<algorithm>using namesp…… 题解列表 2021年04月17日 0 点赞 0 评论 87 浏览 评分:0.0
数组插入处理 摘要:#include <stdio.h>int main(void){ int a[10] = { 0 }; int i; int n; int x = 1; for (i = 0; i <= 8; i+…… 题解列表 2021年04月09日 0 点赞 0 评论 106 浏览 评分:0.0