摘要:
机试指南 cha4 数学问题 机试指南 cha4 数学问题 % % 1 #include <iostream> 2 #include <stdio.h> 3 #include <stdlib.h> 4 #include <math.h> 5 6 using namespace std; 7 // 还 阅读全文
posted @ 2018-08-21 09:48
暴走的二萌
阅读(415)
评论(0)
推荐(0)
摘要:
机试指南 cha 3 二叉树 机试指南 cha 3 二叉树 已知前序和中序求后序遍历 已知前序和中序求后序遍历 1 #include <iostream> 2 #include <stdio.h> 3 #include <algorithm> 4 #include <queue> 5 #includ 阅读全文
posted @ 2018-08-21 09:44
暴走的二萌
阅读(660)
评论(0)
推荐(0)
摘要:
机试指南 cha3 哈夫曼 机试指南 cha3 哈夫曼 自己写了一版代码+数据结构书上的标准代码 自己写了一版代码+数据结构书上的标准代码 1 #include <iostream> 2 #include <string.h> 3 #include <stdio.h> 4 #include <std 阅读全文
posted @ 2018-08-21 09:42
暴走的二萌
阅读(678)
评论(0)
推荐(0)
摘要:
机试指南 cha 3 栈的应用 机试指南 cha 3 栈的应用 括号匹配问题 括号匹配问题 1 #include <iostream> 2 #include <stdio.h> 3 #include <algorithm> 4 #include <queue> 5 #include <stack> 阅读全文
posted @ 2018-08-21 09:40
暴走的二萌
阅读(409)
评论(0)
推荐(0)
摘要:
复习笔记 数据结构 第三章 栈和队列 复习笔记 数据结构 第三章 栈和队列 1 #include <iostream> 2 #include <string.h> 3 #include <stdio.h> 4 #include <stdlib.h> 5 #define maxSize 20 6 #d 阅读全文
posted @ 2018-08-21 09:37
暴走的二萌
阅读(253)
评论(0)
推荐(0)