数据结构-线索二叉树-题解(C++代码) 摘要:```cpp #include using namespace std; struct A { char data; struct A *lchild; str…… 题解列表 2020年03月13日 0 点赞 0 评论 999 浏览 评分:9.9
数据结构-自底向上的赫夫曼编码-题解(C++代码) 摘要:```cpp #include #include #include #include #include using namespace std; struct Node { …… 题解列表 2020年03月13日 0 点赞 0 评论 1987 浏览 评分:9.9
数据结构-自顶向下的赫夫曼编码-题解(C++代码) 摘要:```cpp #include #include #include #include #include using namespace std; struct Node { …… 题解列表 2020年03月13日 0 点赞 0 评论 1122 浏览 评分:9.9
数据结构-稀疏矩阵快速转置-题解(C++代码) 摘要:```cpp #include using namespace std; struct A { int row; int data; int col; }; …… 题解列表 2020年03月13日 0 点赞 0 评论 1373 浏览 评分:9.9
数据结构-稀疏矩阵转置-题解(C++代码) 摘要:```cpp #include using namespace std; struct A{ int r; int data; int c; }; struct…… 题解列表 2020年03月13日 0 点赞 0 评论 1142 浏览 评分:9.9
字符序列模式识别-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; bool jud(string str); int main() { …… 题解列表 2020年03月13日 0 点赞 0 评论 870 浏览 评分:9.9
树查找-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { int n, d; while (cin >> n…… 题解列表 2020年03月13日 0 点赞 0 评论 958 浏览 评分: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 评论 1189 浏览 评分:9.9
蓝桥杯算法提高VIP-约数个数-题解(Python代码) 摘要:```python n = int(input()) count = 0 for i in range(1,n+1): if n % i == 0: count +=…… 题解列表 2020年03月13日 0 点赞 0 评论 1043 浏览 评分:9.9
旋桜-蓝桥杯2013年第四届真题-错误票据-题解(C++代码) 摘要:~~题库玩来玩去,回来刷蓝桥~~ 这个题就是简单的map与istringstream的运用 话不多说 上代码 ```cpp #include #include #include …… 题解列表 2020年03月13日 0 点赞 0 评论 780 浏览 评分:9.9