[编程入门]数组插入处理-题解(python代码) 摘要:参考代码:A = list(map(int,input().split())) #将第一次输入的元素以整形放入列表 A.append(int(input())) #将第二次输入的一个元素以整形加入…… 题解列表 2021年10月15日 0 点赞 0 评论 647 浏览 评分:9.9
【C语言】新手解法 摘要:解题思路:由后往前移动目标数注意事项:参考代码:#include <stdio.h> int main(){ int array[10]={0}; int i1,i2,a; i1=a…… 题解列表 2021年10月25日 0 点赞 0 评论 254 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:将输入的数据与数组中元素从前往后依次比较,找到位置记住输入数据该插入位置。将其后元素依次后移注意事项:注意0元素,参考代码此种情况单独讨论参考代码:#includeint main(){ …… 题解列表 2021年11月01日 0 点赞 0 评论 204 浏览 评分:0.0
C++ STL Vector + 二分查找 摘要:解题思路: lower_bound:查找第一个大于或等于某个元素的位置。 upper_bound:查找第一个大于某个元素的位置。代码:#include<bits/stdc++.h> us…… 题解列表 2021年11月04日 0 点赞 1 评论 747 浏览 评分:9.9
初学者的拙劣方法 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int main(){ int a[9]; int b; int i; for(i = 0;i<9;i++) …… 题解列表 2021年11月04日 0 点赞 0 评论 103 浏览 评分:0.0
用选择排序法解题 摘要:我感觉把这10个数放一起比大小思路会简单些 中间再插入一个数放入数组,然后其它数移到后面数组的方法感觉不容易实现 ```c //选择排序法 #include int main () {…… 题解列表 2021年11月05日 0 点赞 0 评论 183 浏览 评分:9.9
[编程入门]数字插入处理-----利用函数------(Python) 摘要:Python append----在最末尾添加 sort-----将列表排序 ```python team=list(map(int,input().split())) n=int(inpu…… 题解列表 2021年11月05日 0 点赞 0 评论 251 浏览 评分:0.0
数组插入处理。数组移位简单分析 摘要:解题思路:首先用for循环判断输入的n具体在哪个位置;在把n之后的数组往后移一位注意事项:特别要注意当数组中没有比n更大的情况,这是只需把数组按顺序输出,然后再输出n就行参考代码:#include<s…… 题解列表 2021年11月09日 0 点赞 0 评论 337 浏览 评分:9.9
不使用数组移位的方法解决该题 摘要:解题思路:判断n处于哪个位置,先输出n前面的数字,在输出n的值,然后再输出n后面的数值。注意事项:参考代码:#include<stdio.h>int main(){ int a[9],n; for (…… 题解列表 2021年11月09日 0 点赞 0 评论 206 浏览 评分:9.9
1025 就是钱欠收拾,,,C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ int i,t,a[10]; for(i=0;i<9;i++) { …… 题解列表 2021年11月09日 0 点赞 0 评论 136 浏览 评分:0.0