数据结构-线索二叉树-题解(C++代码) 摘要:```cpp #include using namespace std; struct A { char data; struct A *lchild; str…… 题解列表 2020年03月13日 0 点赞 0 评论 879 浏览 评分:9.9
数据结构-自底向上的赫夫曼编码-题解(C++代码) 摘要:```cpp #include #include #include #include #include using namespace std; struct Node { …… 题解列表 2020年03月13日 0 点赞 0 评论 1812 浏览 评分:9.9
数据结构-自顶向下的赫夫曼编码-题解(C++代码) 摘要:```cpp #include #include #include #include #include using namespace std; struct Node { …… 题解列表 2020年03月13日 0 点赞 0 评论 1005 浏览 评分:9.9
蓝桥杯算法提高VIP-数组替换-题解(C语言代码) 摘要: #include void add(int *a, int m, int *b, int n); int main(void) { in…… 题解列表 2020年03月13日 0 点赞 0 评论 617 浏览 评分:0.0
数据结构-稀疏矩阵快速转置-题解(C++代码) 摘要:```cpp #include using namespace std; struct A { int row; int data; int col; }; …… 题解列表 2020年03月13日 0 点赞 0 评论 1240 浏览 评分:9.9
数据结构-稀疏矩阵转置-题解(C++代码) 摘要:```cpp #include using namespace std; struct A{ int r; int data; int c; }; struct…… 题解列表 2020年03月13日 0 点赞 0 评论 1022 浏览 评分:9.9
字符序列模式识别-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; bool jud(string str); int main() { …… 题解列表 2020年03月13日 0 点赞 0 评论 748 浏览 评分:9.9
树查找-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { int n, d; while (cin >> n…… 题解列表 2020年03月13日 0 点赞 0 评论 847 浏览 评分:9.9
[编程入门]数字逆序输出-题解(C语言代码)——“手动”交换,一看就懂 摘要:此题可以用“手动”交换来完成 ```c #include int main() { int a1,a2,a3,a4,a5,a6,a7,a8,a9,a10; scanf("%d%d%…… 题解列表 2020年03月13日 0 点赞 0 评论 1091 浏览 评分:9.6
蓝桥杯算法训练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 评论 1052 浏览 评分:9.9