简单易懂 给个赞 嘻嘻 摘要:解题思路:很简单注意事项:注意考虑周到参考代码:#include<stdio.h>#define N 10000void text(int * a , int n1 , int n2){&…… 题解列表 2025年01月09日 4 点赞 0 评论 317 浏览 评分:10.0
从后面移动,并保存消失的后面 摘要:解题思路:#include<stdio.h> int main(void) { int i, j, n, a[100], move; scanf("%d", &n); …… 题解列表 2024年12月28日 0 点赞 0 评论 254 浏览 评分:0.0
用冒泡排序的方法解决 摘要:解题思路: 通过交换相邻元素的方式将元素依次向前移动一位,实现将数组的后 m 个元素循环前移到数组前面。注意事项: 注意输入的 m 值不能超过数组的长度,否则可能会出现越界错误。代码中使用了变长数组(…… 题解列表 2024年12月28日 2 点赞 0 评论 184 浏览 评分:10.0
简单易想到 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void fun(int a[],int m,int n){ int b[n],i,j=0; for(i=n-m;i<n;i++){ …… 题解列表 2024年12月18日 2 点赞 0 评论 285 浏览 评分:0.0
一组数组不行就两组 摘要:解题思路:注意事项:在自定义函数中在定义一组数组,用于存放原数组中各数组元素后移形成的各数组元素。参考代码:#include<stdio.h>void f(int a[],int n,int m){ …… 题解列表 2024年12月04日 0 点赞 0 评论 181 浏览 评分:0.0
[编程入门]自定义函数之数字后移 摘要:扩充挪到前面的代码先输出,没动的代码先输出,但是内存可能不够参考代码: #include<stdio.h>int a[100000];int main(){ int n,m; scanf(…… 题解列表 2024年11月23日 1 点赞 0 评论 166 浏览 评分:0.0
数组法数字后移 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int F(int arr[],int j,int k){ int b[k]; for(int i=0;i<k;i++) { b[i]…… 题解列表 2024年11月20日 0 点赞 0 评论 110 浏览 评分:0.0
1046: [编程入门]自定义函数之数字后移(python) 摘要:把末尾的插入`a[0]`,再把末尾的删除 ~~~python n = int(input()) a = list(map(int,input().split())) m = int(inp…… 题解列表 2024年10月24日 1 点赞 0 评论 153 浏览 评分:9.9
逆天解法,包得吃的。 摘要:解题思路:一直交换,将后面的数换到前面。注意事项:参考代码:#include<stdio.h>int main(){ int a,i,j,b,c,arr[10]={0}; scanf("%d",&a)…… 题解列表 2024年10月20日 0 点赞 0 评论 478 浏览 评分:9.9
编写题解 1046: [编程入门]自定义函数之数字后移 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年09月19日 0 点赞 0 评论 228 浏览 评分:9.9