最好理解的矩阵转化问题——Python 摘要:参考代码:a,b,c=map(int,input().split()) d,e,f=map(int,input().split()) g,h,i=map(int,input().split()) …… 题解列表 2024年12月27日 1 点赞 0 评论 59 浏览 评分:10.0
编写题解 1050: [编程入门]结构体之成绩记录(注释清晰 简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student{ …… 题解列表 2024年12月27日 2 点赞 0 评论 152 浏览 评分:10.0
编写题解 1051: [编程入门]结构体之成绩统计2(注释清晰 简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { …… 题解列表 2024年12月27日 3 点赞 0 评论 251 浏览 评分:10.0
1575递归倒置字符c++递归法简单明了解决方案 摘要:解题思路:此处使用swap方法进行字符交换,可以使代码更简洁更简单,只需要在定义的一个方法中传输该字符与字符数组左右的边界。当左边界大于等一有边界就可以返回了,这样也可以使得输入n=1时也能返回。再使…… 题解列表 2024年12月28日 0 点赞 0 评论 111 浏览 评分:10.0
2163二分法查找最接近的元素 摘要:解题思路:注意事项:在比较的时候需要注意取绝对值(abs函数)比较,不然会出错。参考代码:#include <bits/stdc++.h>using namespace std;int findClo…… 题解列表 2024年12月28日 0 点赞 0 评论 99 浏览 评分:10.0
用冒泡排序的方法解决 摘要:解题思路: 通过交换相邻元素的方式将元素依次向前移动一位,实现将数组的后 m 个元素循环前移到数组前面。注意事项: 注意输入的 m 值不能超过数组的长度,否则可能会出现越界错误。代码中使用了变长数组(…… 题解列表 2024年12月28日 1 点赞 0 评论 72 浏览 评分:10.0
河中跳房子#自作聪明的约翰 摘要:解题思路:步骤分析:1.不移除任何岩石时,岩石之间的跳跃距离分别是:最短跳跃距离是 3。从起点到岩石 2:2从岩石 2 到岩石 11:9从岩石 11 到岩石 14:3从岩石 14 到岩石 17:3从岩…… 题解列表 2024年12月29日 1 点赞 0 评论 85 浏览 评分:10.0
初学者思路,简单易懂 摘要:解题思路:从字符数组的两边往中间开始交换注意事项:参考代码: #include<stdio.h> #include<string.h> void fun(char*); int main()…… 题解列表 2024年12月29日 1 点赞 0 评论 143 浏览 评分:10.0
这题的有问题 摘要:#include<stdio.h> int ans(int n); int main(void) { int to, from, temp; int i, j; i…… 题解列表 2024年12月29日 0 点赞 0 评论 43 浏览 评分:10.0
1231杨辉三角,C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; int a[100][100]={1}; while(scanf("%d",…… 题解列表 2024年12月31日 1 点赞 0 评论 107 浏览 评分:10.0