├── 2000 ├── 1.阶乘.cpp ├── 2.对称矩阵.cpp └── 遍历链表.cpp ├── 2001 ├── 找位置.cpp ├── 最大的两个数.cpp └── 链表删除最大数.cpp ├── 2002 ├── 二叉树遍历.cpp ├── 守形数.cpp └── 统计单词.cpp ├── 2005 ├── 二叉排序树.cpp └── 前中后序遍历.cpp ├── 2006 ├── IP地址.cpp ├── 大整数排序.cpp └── 排序.cpp ├── 2007 ├── 回文字符串.cpp ├── 矩阵最大值.cpp ├── 矩阵的最大值.cpp └── 矩阵转置.cpp ├── 2008 ├── N阶楼梯上楼问题.cpp ├── 八进制.cpp └── 最长&最短文本.cpp ├── 2011 ├── 二叉搜索树.cpp ├── 整数排序.cpp └── 文本字符.cpp ├── 2012 ├── 字符串排序.cpp └── 长整数.cpp ├── 2013 ├── 孪生素数.cpp ├── 旋转方阵.cpp └── 最长回文子串.cpp ├── 2014 ├── 二进制运算.cpp ├── 合法常量名.cpp └── 超级素数.cpp ├── 2015 ├── 字符串变换.cpp ├── 字符串拼接.cpp └── 电话号码.cpp ├── 2016 ├── 去空格.cpp ├── 合法IP地址.cpp └── 评委打分.cpp ├── 2017 ├── A + B.cpp ├── 字符三角形.cpp └── 字符串压缩.cpp ├── 2018 ├── N➗D.cpp ├── 单词个数统计.cpp └── 进制转换.cpp ├── 2019 ├── 代码处理.cpp ├── 凯撒密码.cpp └── 梅森素数.cpp ├── 2021 ├── 题目1.cpp ├── 题目2.cpp └── 题目3.cpp ├── 2003-2004 ├── 打印日期.cpp ├── 最小年龄的3个职工.cpp └── 特殊排序.cpp ├── 2009-2010 ├── a+b.cpp ├── 奇偶校验.cpp ├── 字符串连接.cpp └── 成绩排序.cpp └── README.md /2000/1.阶乘.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2000/1.阶乘.cpp -------------------------------------------------------------------------------- /2000/2.对称矩阵.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2000/2.对称矩阵.cpp -------------------------------------------------------------------------------- /2000/遍历链表.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2000/遍历链表.cpp -------------------------------------------------------------------------------- /2001/找位置.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2001/找位置.cpp -------------------------------------------------------------------------------- /2001/最大的两个数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2001/最大的两个数.cpp -------------------------------------------------------------------------------- /2001/链表删除最大数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2001/链表删除最大数.cpp -------------------------------------------------------------------------------- /2002/二叉树遍历.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2002/二叉树遍历.cpp -------------------------------------------------------------------------------- /2002/守形数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2002/守形数.cpp -------------------------------------------------------------------------------- /2002/统计单词.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2002/统计单词.cpp -------------------------------------------------------------------------------- /2003-2004/打印日期.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2003-2004/打印日期.cpp -------------------------------------------------------------------------------- /2003-2004/最小年龄的3个职工.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2003-2004/最小年龄的3个职工.cpp -------------------------------------------------------------------------------- /2003-2004/特殊排序.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2003-2004/特殊排序.cpp -------------------------------------------------------------------------------- /2005/二叉排序树.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2005/二叉排序树.cpp -------------------------------------------------------------------------------- /2005/前中后序遍历.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2005/前中后序遍历.cpp -------------------------------------------------------------------------------- /2006/IP地址.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2006/IP地址.cpp -------------------------------------------------------------------------------- /2006/大整数排序.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2006/大整数排序.cpp -------------------------------------------------------------------------------- /2006/排序.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2006/排序.cpp -------------------------------------------------------------------------------- /2007/回文字符串.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2007/回文字符串.cpp -------------------------------------------------------------------------------- /2007/矩阵最大值.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2007/矩阵最大值.cpp -------------------------------------------------------------------------------- /2007/矩阵的最大值.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2007/矩阵的最大值.cpp -------------------------------------------------------------------------------- /2007/矩阵转置.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2007/矩阵转置.cpp -------------------------------------------------------------------------------- /2008/N阶楼梯上楼问题.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2008/N阶楼梯上楼问题.cpp -------------------------------------------------------------------------------- /2008/八进制.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2008/八进制.cpp -------------------------------------------------------------------------------- /2008/最长&最短文本.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2008/最长&最短文本.cpp -------------------------------------------------------------------------------- /2009-2010/a+b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2009-2010/a+b.cpp -------------------------------------------------------------------------------- /2009-2010/奇偶校验.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2009-2010/奇偶校验.cpp -------------------------------------------------------------------------------- /2009-2010/字符串连接.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2009-2010/字符串连接.cpp -------------------------------------------------------------------------------- /2009-2010/成绩排序.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2009-2010/成绩排序.cpp -------------------------------------------------------------------------------- /2011/二叉搜索树.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2011/二叉搜索树.cpp -------------------------------------------------------------------------------- /2011/整数排序.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2011/整数排序.cpp -------------------------------------------------------------------------------- /2011/文本字符.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2011/文本字符.cpp -------------------------------------------------------------------------------- /2012/字符串排序.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2012/字符串排序.cpp -------------------------------------------------------------------------------- /2012/长整数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2012/长整数.cpp -------------------------------------------------------------------------------- /2013/孪生素数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2013/孪生素数.cpp -------------------------------------------------------------------------------- /2013/旋转方阵.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2013/旋转方阵.cpp -------------------------------------------------------------------------------- /2013/最长回文子串.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2013/最长回文子串.cpp -------------------------------------------------------------------------------- /2014/二进制运算.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2014/二进制运算.cpp -------------------------------------------------------------------------------- /2014/合法常量名.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2014/合法常量名.cpp -------------------------------------------------------------------------------- /2014/超级素数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2014/超级素数.cpp -------------------------------------------------------------------------------- /2015/字符串变换.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2015/字符串变换.cpp -------------------------------------------------------------------------------- /2015/字符串拼接.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2015/字符串拼接.cpp -------------------------------------------------------------------------------- /2015/电话号码.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2015/电话号码.cpp -------------------------------------------------------------------------------- /2016/去空格.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2016/去空格.cpp -------------------------------------------------------------------------------- /2016/合法IP地址.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2016/合法IP地址.cpp -------------------------------------------------------------------------------- /2016/评委打分.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2016/评委打分.cpp -------------------------------------------------------------------------------- /2017/A + B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2017/A + B.cpp -------------------------------------------------------------------------------- /2017/字符三角形.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2017/字符三角形.cpp -------------------------------------------------------------------------------- /2017/字符串压缩.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2017/字符串压缩.cpp -------------------------------------------------------------------------------- /2018/N➗D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2018/N➗D.cpp -------------------------------------------------------------------------------- /2018/单词个数统计.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2018/单词个数统计.cpp -------------------------------------------------------------------------------- /2018/进制转换.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2018/进制转换.cpp -------------------------------------------------------------------------------- /2019/代码处理.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2019/代码处理.cpp -------------------------------------------------------------------------------- /2019/凯撒密码.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2019/凯撒密码.cpp -------------------------------------------------------------------------------- /2019/梅森素数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2019/梅森素数.cpp -------------------------------------------------------------------------------- /2021/题目1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2021/题目1.cpp -------------------------------------------------------------------------------- /2021/题目2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2021/题目2.cpp -------------------------------------------------------------------------------- /2021/题目3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/2021/题目3.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feisdhy/HUST-ComputerExamination/HEAD/README.md --------------------------------------------------------------------------------