C语言训练-最大数问题-题解(C++代码) 摘要:```cpp #include using namespace std; typedef struct Node{ int data; struct Node *nex…… 题解列表 2020年03月13日 0 点赞 1 评论 807 浏览 评分:9.9
蓝桥杯算法训练VIP-一元三次方程求解-题解(Python代码) 摘要:### python 二分查找 ```python a,b,c,d = map(float,input().split()) def f(x): return a*x**3+b*x**…… 题解列表 2020年03月13日 0 点赞 1 评论 1503 浏览 评分:9.9
数据结构-线索二叉树-题解(C++代码) 摘要:```cpp #include using namespace std; struct A { char data; struct A *lchild; str…… 题解列表 2020年03月13日 0 点赞 0 评论 844 浏览 评分:9.9
数据结构-自底向上的赫夫曼编码-题解(C++代码) 摘要:```cpp #include #include #include #include #include using namespace std; struct Node { …… 题解列表 2020年03月13日 0 点赞 0 评论 1763 浏览 评分:9.9
数据结构-自顶向下的赫夫曼编码-题解(C++代码) 摘要:```cpp #include #include #include #include #include using namespace std; struct Node { …… 题解列表 2020年03月13日 0 点赞 0 评论 955 浏览 评分:9.9
数据结构-稀疏矩阵快速转置-题解(C++代码) 摘要:```cpp #include using namespace std; struct A { int row; int data; int col; }; …… 题解列表 2020年03月13日 0 点赞 0 评论 1152 浏览 评分:9.9
数据结构-稀疏矩阵转置-题解(C++代码) 摘要:```cpp #include using namespace std; struct A{ int r; int data; int c; }; struct…… 题解列表 2020年03月13日 0 点赞 0 评论 947 浏览 评分:9.9
字符序列模式识别-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; bool jud(string str); int main() { …… 题解列表 2020年03月13日 0 点赞 0 评论 704 浏览 评分:9.9
树查找-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { int n, d; while (cin >> n…… 题解列表 2020年03月13日 0 点赞 0 评论 813 浏览 评分:9.9
蓝桥杯算法训练VIP-判定字符位置-题解(Python代码) for-else结构 摘要:```python s = input() listABC = ['a','e','i','o','u'] #元音字母的列表 for i in range(len(s)): if s[…… 题解列表 2020年03月13日 0 点赞 0 评论 997 浏览 评分:9.9