c语言 30306:树的存储 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#define MAX_N 10000// 邻接表节点结构体typede…… 题解列表 2024年12月15日 1 点赞 0 评论 24 浏览 评分:10.0
1044 : 三个字符串的排序 (字符串函数多用) 摘要:解题思路:1.三个字符串之间的排序,本质上是比较在下标相同字母不同时,字母在字母表中的位置先后,字母表升序排列,排在前的自然比后面的小。2.为了减少繁琐的步骤,用字符串函数来处理比较大小的环节注意事项…… 题解列表 2024年12月15日 0 点赞 0 评论 140 浏览 评分:0.0
2137: 信息学奥赛一本通T1273-货币系统 简单DP 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量n,&n…… 题解列表 2024年12月15日 0 点赞 0 评论 32 浏览 评分:0.0
新手必看,俩for解决 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n,i,j,h,l; scanf("%d",…… 题解列表 2024年12月16日 0 点赞 0 评论 88 浏览 评分:0.0
2139: 信息学奥赛一本通T1291-数字组合 两种方法超简单 摘要:解题思路:注意事项:参考代码:DFS#include"bits/stdc++.h" using namespace std; // 全局变量声明 …… 题解列表 2024年12月16日 0 点赞 0 评论 37 浏览 评分:0.0
新手必看,一正常,一函数递归 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n; long long cows[5…… 题解列表 2024年12月16日 2 点赞 0 评论 275 浏览 评分:10.0
老头也能看懂的for循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n,a=0,b=0,c=0; for…… 题解列表 2024年12月16日 0 点赞 0 评论 93 浏览 评分:10.0
成绩排序C语言答案(char name[101]!!! 100会只得50分) 摘要:注意事项:分配足够的内存空间char name[101]!!! 100会只得50分参考代码:#include <stdio.h> #include <…… 题解列表 2024年12月16日 0 点赞 0 评论 54 浏览 评分:0.0
字符菱形的c语言解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a; scanf("%c&q…… 题解列表 2024年12月16日 0 点赞 0 评论 55 浏览 评分:0.0
数据结构-链表的基本操作--C语言 摘要:解题思路:保存题解注意事项:需要确保即使初始元素数量为 0,链表仍然有一个有效的头结点。这样可以避免在后续操作中因为 L 为 NULL 而导致的问题参考代码:#include <std…… 题解列表 2024年12月16日 0 点赞 0 评论 48 浏览 评分:0.0