用冒泡排序的方法解决 摘要:解题思路: 通过交换相邻元素的方式将元素依次向前移动一位,实现将数组的后 m 个元素循环前移到数组前面。注意事项: 注意输入的 m 值不能超过数组的长度,否则可能会出现越界错误。代码中使用了变长数组(…… 题解列表 2024年12月28日 2 点赞 0 评论 386 浏览 评分:10.0
有点思维难度 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(void) { int n, i; scanf("%d", &n); int a[…… 题解列表 2024年12月28日 1 点赞 1 评论 264 浏览 评分:10.0
河中跳房子#自作聪明的约翰 摘要:解题思路:步骤分析:1.不移除任何岩石时,岩石之间的跳跃距离分别是:最短跳跃距离是 3。从起点到岩石 2:2从岩石 2 到岩石 11:9从岩石 11 到岩石 14:3从岩石 14 到岩石 17:3从岩…… 题解列表 2024年12月29日 2 点赞 0 评论 308 浏览 评分:10.0
初学者思路,简单易懂 摘要:解题思路:从字符数组的两边往中间开始交换注意事项:参考代码: #include<stdio.h> #include<string.h> void fun(char*); int main()…… 题解列表 2024年12月29日 8 点赞 1 评论 1041 浏览 评分:10.0
这题的有问题 摘要:#include<stdio.h> int ans(int n); int main(void) { int to, from, temp; int i, j; i…… 题解列表 2024年12月29日 0 点赞 1 评论 246 浏览 评分:10.0
有点懵,搞不清楚二维和一维使用 摘要:解题思路:注意事项:参考代码#include<iostream>using namespace std;int n, m;int a[5010], b[5010], dp[5010];int main…… 题解列表 2024年12月29日 1 点赞 0 评论 200 浏览 评分:10.0
数位dp #2490: 信息学奥赛一本通T1586-数字游戏(C++) 看注释 摘要:``` #include using namespace std; const int N =15; //I位数字且最高位是J的不降数的个数 int f[N][N]; vo…… 题解列表 2024年12月30日 2 点赞 0 评论 632 浏览 评分:10.0
简单的回文数 摘要:#include<stdio.h> int judge(int n); int main(void) { int i = 95859, count = 0; while(co…… 题解列表 2024年12月30日 1 点赞 0 评论 949 浏览 评分:10.0
点进来你会后悔的 摘要:#include<stdio.h> int judge(int n); int main(void) { int n; scanf("%d", &n); if(ju…… 题解列表 2024年12月30日 4 点赞 0 评论 1462 浏览 评分:10.0
1231杨辉三角,C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; int a[100][100]={1}; while(scanf("%d",…… 题解列表 2024年12月31日 1 点赞 0 评论 471 浏览 评分:10.0