题解 1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cstdio>using namespace std;int main(){ …… 题解列表 2022年01月27日 0 点赞 0 评论 151 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[10]; int i=0; int t; for(i=0;i<9;…… 题解列表 2022年02月13日 0 点赞 0 评论 172 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[9],b[10]; int i,j,k; for(i=0;i<9;i++) …… 题解列表 2022年02月17日 0 点赞 0 评论 631 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:li = list(map(int, input().split()))a = eval(input())li.append(a)li.sort(reverse = Fa…… 题解列表 2022年02月20日 0 点赞 0 评论 195 浏览 评分:0.0
编写题解 1025: [编程入门]数组插入处理 自留笔记 摘要:解题思路:将要插入的数据放在数组最后一位,然后排序整个数组参考代码:#include <stdio.h> int main() { int a[10],min,t; for(i…… 题解列表 2022年02月22日 0 点赞 0 评论 116 浏览 评分:0.0
编写题解 1025: [编程入门]数组插入处理 摘要:稍微把别人的改了一点点参考代码:l = list(map(int,input().split()))l.append(int(input(a)))l[len(l)-1] = int(l[len(l)-…… 题解列表 2022年03月02日 0 点赞 0 评论 256 浏览 评分:0.0
编写题解 1025: [编程入门]数组插入处理--解题 摘要:解题思路:既然他已经给排好顺序,那我们给他放入数组中,我们只需要用temp来记录在数组中某个比当前数大的位置即可,在输出时,用temp间隔开,先输出tenp位置前的数字,再输出temp位置后的数字。注…… 题解列表 2022年03月02日 0 点赞 0 评论 245 浏览 评分:0.0
编写题解 1025: [编程入门]数组插入处理(初始解题,包含数组、循环、判断) 摘要:# 原题链接 **[编程入门]数组插入处理 - C语言网 https://www.dotcpp.com/oj/problem1025.html。** ## 解题思路 **1、按照题…… 题解列表 2022年03月19日 0 点赞 0 评论 261 浏览 评分:0.0
1025: [编程入门]数组插入处理——c++二分查找寻找插入位置 摘要:解题思路:第一眼就想到二分查找寻找插入位置,写完发现代码还怪长的参考代码:#include<bits/stdc++.h> using namespace std; int main(){ …… 题解列表 2022年03月20日 0 点赞 0 评论 186 浏览 评分:0.0
编写题解 1025: [编程入门]数组插入处理 摘要:解题思路:冒泡排序,适合新手理解注意事项:题目并没有说必须要插入法,所以只要把输入的所有数重新排序即可参考代码:#include<bits/stdc++.h> using namespace std;…… 题解列表 2022年03月21日 0 点赞 0 评论 279 浏览 评分:0.0