超级楼梯(Python) 摘要:解题思路:注意事项:参考代码:def super_stair_ways(m): dp = [0] * (m + 1) dp[1] = 1 for i in range(2, m + …… 题解列表 2023年12月08日 0 点赞 0 评论 281 浏览 评分:0.0
大数据因子 带解题思路 摘要:解题思路:注意事项:参考代码:c = int(input()) #输入数据k = [2, 3, 4, 5, 6, 7, 8, 9] #定义K…… 题解列表 2023年12月08日 0 点赞 0 评论 336 浏览 评分:9.9
题解 2908: 白细胞计数 摘要: #include using namespace std; int main(){ int n; double o; …… 题解列表 2023年12月08日 0 点赞 0 评论 198 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Stu{ char id[20],name[20]; int score[3],total;};void in…… 题解列表 2023年12月08日 0 点赞 0 评论 224 浏览 评分:9.9
题解 1062: 公约公倍(简单循环) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n; scanf("%d %d",&m,&n); for(int i=(m<n…… 题解列表 2023年12月08日 0 点赞 0 评论 162 浏览 评分:9.9
Pell数列(Python) 摘要:解题思路:注意事项:参考代码:def pell_number(k): a, b = 1, 2 if k == 1: return 1 elif k == 2: …… 题解列表 2023年12月08日 0 点赞 0 评论 247 浏览 评分:0.0
C语言课后习题 摘要:解题思路:用m,n相互替换一下,当然你也可以只用一个n从0到9再从9到0注意事项:参考代码:#include<stdio.h>int main(){ int n,m; int arr[10…… 题解列表 2023年12月08日 0 点赞 1 评论 159 浏览 评分:9.9
计算字符串距离 摘要:解题思路:注意事项:参考代码:def edit_distance(A, B): m = len(A) n = len(B) # 初始化二维数组 dp = [[0] * (n +…… 题解列表 2023年12月08日 0 点赞 0 评论 159 浏览 评分:0.0
题解 1061: 二级C语言-计负均正 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int count=0,temp=…… 题解列表 2023年12月08日 0 点赞 0 评论 218 浏览 评分:0.0
1043: [编程入门]三个数字的排序 C语言 冒泡排序 摘要:解题思路:冒泡排序注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>int main(void){ int a, b, c,t; s…… 题解列表 2023年12月08日 0 点赞 0 评论 145 浏览 评分:0.0