蓝桥杯算法训练VIP-s01串-题解(C++代码)详细注释 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n…… 题解列表 2020年08月31日 0 点赞 0 评论 1456 浏览 评分:9.9
[编程入门]数组插入处理-题解(C语言代码) 摘要:解题思路:数组已经排好顺序了,那就找到输入数字的位置就行,然后输出,在输出我们输入的数字之前要把此时的a[i]先输出哦注意事项:参考代码:#include <stdio.h>int main() { …… 题解列表 2020年08月31日 0 点赞 1 评论 1409 浏览 评分:9.9
蓝桥杯算法训练VIP-阶乘-题解(C++代码)详细注释! 摘要:解题思路: 在线处理,随时去掉后导零,同时要控制防止数据过大溢出注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int…… 题解列表 2020年08月31日 0 点赞 0 评论 741 浏览 评分:9.9
[编程入门]矩阵对角线求和-题解(C语言代码) 摘要:解题思路:二维数组,两次循环输入,然后直接输出对角线和注意事项:参考代码:#include <stdio.h>int main() { int a[3][3],i,j; for(i=0;i<3;i++…… 题解列表 2020年08月31日 0 点赞 0 评论 730 浏览 评分:0.0
二叉搜索树 -题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>typedef struct t…… 题解列表 2020年08月31日 0 点赞 0 评论 762 浏览 评分:0.0
二叉排序树-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>#include<stdlib.h>typedef struct t…… 题解列表 2020年08月31日 0 点赞 0 评论 764 浏览 评分:9.9
求所给范围内水仙花数并排列-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> using namespace std; int mai…… 题解列表 2020年08月31日 0 点赞 0 评论 748 浏览 评分:9.9
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:解题思路:注意事项:可以作为链表练习的一个题,蛮不错的参考代码:#include <stdio.h>#include <stdlib.h>struct student{ char num…… 题解列表 2020年08月31日 0 点赞 0 评论 570 浏览 评分:0.0
[编程入门]三个字符串的排序-题解(C语言代码) 摘要:解题思路:冒泡排序注意事项:三个字符串函数:strcmp(a,b):比较大小函数 &n 题解列表 2020年08月31日 0 点赞 0 评论 964 浏览 评分:0.0
计算数字个数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(void){ char a[1000]; int i,length,j=0; ge…… 题解列表 2020年08月31日 0 点赞 0 评论 736 浏览 评分:0.0