├── .gitignore ├── Algorithm ├── BFS │ └── POJ3278.Catch That Cow.cpp ├── BinarySearch │ └── Aggressive cows.cpp ├── DFS │ ├── 4103.踩方格.cpp │ ├── 走迷宫.cpp │ └── 迷宫.cpp ├── DynamicProgramming │ ├── 1088.滑雪.cpp │ ├── 1163.TheTriangle.cpp │ ├── 1481.MaximumSum.cpp │ ├── 2755.神奇的口袋.cpp │ ├── HDU1024.MaxSumPlusPlus.cpp │ ├── LeetCode.97.InterleavingStrings.cpp │ ├── POJ3181Dollar_Dayz.cpp │ ├── 最优二叉搜索树.cpp │ └── 课程大作业.cpp ├── GameTheory │ └── 1067.取石子游戏.cpp ├── Graph │ ├── 3159.Candies.cpp │ ├── POJ3259.Wormholes.cpp │ └── POJ3268.SilverCowParty.cpp ├── HighPrecision │ ├── BigInteger.cpp │ ├── BigInteger.h │ ├── NOI.1.6.12.计算2的N次方.cpp │ ├── NOI.1.6.13.大整数的因子.cpp │ ├── NOI.1.6.14.求10000以内n的阶乘.cpp │ ├── NOI.1.6.15.阶乘和.cpp │ ├── NOI1.6.10.大整数加法.cpp │ ├── NOI1.6.11.大整数减法.cpp │ ├── POJ1220NumberBaseConversion.cpp │ └── 百练2738.实数加法.cpp ├── Math │ ├── copy_and_submit.cpp │ └── 管管.cpp ├── Recursion │ └── 2746.约瑟夫问题.cpp ├── Simulation │ ├── 3750.魔兽世界.cpp │ └── 874.WalkingRobotSimulation.cpp ├── Sort │ ├── POJ2388_one_way.cpp │ ├── POJ2388_quick_select.cpp │ ├── POJ2388_three_pointers.cpp │ ├── POJ2388_two_ways.cpp │ ├── quicksort_one_way.cpp │ ├── quicksort_three_pointers.cpp │ └── quicksort_two_ways.cpp ├── Tree │ ├── POJ1258.Agri-Net[Kruskal].cpp │ ├── POJ1258.Agri-Net[Prim].cpp │ └── POJ3253.Fence Repair.cpp ├── Trie │ └── WYJ和渡边梨加.cpp └── UnionFind │ └── POJ2492.A Bug's Life.cpp ├── CCF ├── 201803 │ ├── 2.碰撞的小球.cpp │ └── 3.URL映射.cpp └── 201812 │ └── 1.小明上学.cpp ├── CMakeLists.txt ├── LICENSE ├── PAT甲级 ├── 1001.A+BFormat.cpp ├── 1002.A+BforPolynomials.cpp ├── 1003.Emergency.cpp ├── 1004.CountingLeaves.cpp ├── 1005.SpellItRight.cpp ├── 1006.SignInandSignOut.cpp ├── 1007.MaximumSubsequenceSum.cpp ├── 1008.Elevator.cpp ├── 1009.ProductOfPolynomials.cpp ├── 1010.Radix.cpp ├── 1011.WorldCupBetting.cpp ├── 1012.TheBestBank.cpp ├── 1013.BattleOverCities.cpp ├── 1014.WaitinginLine.cpp ├── 1015.ReversiblePrimes.cpp ├── 1016.PhoneBills.cpp ├── 1019.GeneralPalindromicNumber.cpp ├── 1020.TreeTraversals.cpp ├── 1021.DeepestRoot.cpp ├── 1022.DigitalLibrary.cpp ├── 1023.HaveFunWithNumbers.cpp ├── 1024.PalindromicNumber.cpp ├── 1025.PATRanking.cpp ├── 1026.TableTennis.cpp ├── 1027.ColorsinMars.cpp ├── 1028.ListSorting.cpp ├── 1029.Median.cpp ├── 1030.TravelPlan.cpp ├── 1031.HelloWorldForU.cpp ├── 1032.Sharing.cpp ├── 1033.ToFillorNottoFill.cpp ├── 1034.HeadOfAGang.cpp ├── 1048.FindCoins.cpp ├── 1099.BuildABinarySearchTree.cpp ├── 1101.QuickSort.cpp ├── 1102.InvertABinaryTree.cpp ├── 1103.IntegerFactorization.cpp ├── 1104.SumofNumberSegments.cpp ├── 1105.SpiralMatrix.cpp ├── 1108.FindingAverage.cpp ├── 1110.CompleteBinaryTree.cpp ├── 1111.OnlineMap.cpp ├── 1112.StuckedKeyboard.cpp ├── 1113.IntegerSetPartition.cpp ├── 1114.FamilyProperty.cpp ├── 1115.CountingNodesInABST.cpp ├── 1116.ComeonLetsC .cpp ├── 1117.EddingtonNumber.cpp ├── 1118.BirdsInForest.cpp ├── 1119.PreandPostorderTraversals.cpp ├── 1120.FriendNumbers.cpp ├── 1121.DamnSingle.cpp ├── 1122.HamiltonianCycle.cpp ├── 1123.IsItACompleteAVLTree.cpp ├── 1124.RaffleforWeiboFollowers.cpp ├── 1125.ChaintheRopes.cpp ├── 1126.EulerianPath.cpp ├── 1127.ZigZaggingOnATree.cpp ├── 1128.NQueensPuzzle.cpp ├── 1129.RecommendationSystem.cpp ├── 1130.InfixExpression.cpp ├── 1131.SubwayMap.cpp ├── 1132.CutInteger.cpp ├── 1133.SplittingALinkedList.cpp ├── 1134.VertexCover.cpp ├── 1135.IsItARedBlackTree.cpp ├── 1136.ADelayedPalindrome.cpp ├── 1137.FinalGrading.cpp ├── 1138.PostorderTraversal.cpp ├── 1139.FirstContact.cpp ├── 1140.LookAndSaySequence.cpp ├── 1141PATRankingofInstitutions.cpp ├── 1142.MaximalClique.cpp ├── 1143.LowestCommonAncestor.cpp ├── 1144.TheMissingNumber.cpp ├── 1145.HashingAverageSearchTime.cpp ├── 1146.TopologicalOrder.cpp ├── 1147.Heaps.cpp ├── 1148.WerewolfSimpleVersion.cpp ├── 1149.DangerousGoodsPackaging.cpp ├── 1150.TravellingSalesmanProblem.cpp ├── 1151LCAinaBinaryTree.cpp ├── 1152.GoogleRecruitment.cpp ├── 1153.DecodeRegistrationCardofPAT.cpp ├── 1154.VertexColoring.cpp ├── 1155.HeapPaths.cpp ├── 头文件.cpp ├── 小结.md └── 总结.md ├── README.md ├── Simulation ├── 2016计算机学科夏令营上机考试 │ └── G.重建二叉树[已知前序中序求后序].cpp ├── 2017北京大学大数据研究中心夏令营上机考试 │ └── POJ3669.Meteor Shower.cpp ├── 2017计算机学科夏令营上机考前练习 │ └── B.单词翻转.cpp ├── 2018北京大学计算机学科夏令营上机考试 │ ├── A.计算两个日期之间的天数.cpp │ ├── B.回文子串.cpp │ ├── E.重要逆序对.cpp │ ├── F.Tram [Dijkstra].cpp │ ├── F.Tram [Floyd].cpp │ └── G.食物链.cpp ├── 2018南京大学计算机系夏令营 │ └── 2.MissingNumbers.cpp ├── 2018年北京大学软件工程学科夏令营上机练习 │ ├── A.判决素数个数【埃式筛法】.cpp │ ├── B.编码字符串.cpp │ ├── C.岛屿周长.cpp │ ├── D.Safecracker.cpp │ ├── E.怪盗基德的滑翔翼[最长上升子序列].cpp │ └── G.实现堆结构.cpp ├── 2018清华计算机上机练习 │ └── A │ │ ├── running.in │ │ └── 思考熊的马拉松.cpp ├── 2018清华计算机九推 │ └── 过去的项链.cpp ├── 2018清华软院九推 │ └── 大整数运算.cpp ├── 2018清华软院夏令营 │ ├── 1.回文数.cpp │ ├── 2.上凸函数.cpp │ └── 3.质因子.cpp ├── 2018研究生推免上机考试 │ ├── A.区间内的真素数.cpp │ ├── B.简单密码.cpp │ └── E.热血格斗场.cpp ├── 2019信科研究生上机测试 │ ├── A.护林员盖房子.cpp │ └── B.方便记忆的电话号码.cpp ├── NOI │ ├── 1.6一维数组 │ │ └── 8.石头剪刀布.cpp │ ├── 1.7字符串 │ │ ├── 34.回文子串.cpp │ │ └── 字符串移位包含问题.cpp │ ├── 2.2递归和自调用函数 │ │ └── 2694.逆波兰表达式.cpp │ ├── 2.5搜索 │ │ ├── 1388.Lake Counting.cpp │ │ ├── 1789.算24.cpp │ │ ├── 666.放苹果.cpp │ │ └── 917.KnightMoves.cpp │ ├── 2.6动态规划 │ │ ├── 1759.最长上升子序列.cpp │ │ ├── 1775.采药.cpp │ │ ├── 1808.公共子序列.cpp │ │ ├── 1944.吃糖果.cpp │ │ ├── 2000.最长公共子上升序列.cpp │ │ ├── 3532.最长上升子序列和.cpp │ │ ├── 4152.最佳加法表达式.cpp │ │ ├── 4982.踩方格.cpp │ │ ├── 8780.拦截导弹.cpp │ │ ├── 8785.装箱问题.cpp │ │ ├── 9265.取数游戏.cpp │ │ └── 9290.Pku2680_Computer_Transformation.cpp │ ├── 2.7算法效率 │ │ └── 砝码称重[多重背包].cpp │ ├── 3.7数据结构之堆 │ │ └── 2726.集合问题.cpp │ └── 3.9C++STL │ │ ├── 1806.词典.cpp │ │ └── 3345.priority_queue练习题.cpp ├── 模拟练习.md ├── 王道论坛计算机考研机试指南 │ ├── 2.10查找学生信息【二分查找】.cpp │ ├── 2.11FatMouse'Trade【贪心】.cpp │ ├── 2.12今年暑假不AC【非重叠区间】.cpp │ ├── 2.1排序【冒泡排序】.cpp │ ├── 2.1排序【自定义比较函数】.cpp │ ├── 2.2成绩排序【自定义比较函数】.cpp │ ├── 2.2成绩排序【重载运算符】.cpp │ ├── 2.3日期差值.cpp │ ├── 2.4Day_of_week.cpp │ ├── 2.5统计同成绩学生人数【Hash】.cpp │ ├── 2.6Sort【Hash】.cpp │ ├── 2.7输出梯形【排版】.cpp │ ├── 2.8叠筐【排版】.cpp │ ├── 2.9找x【线性查找】.cpp │ ├── 3.1括号匹配问题【栈的应用】.cpp │ ├── 3.2简单计算器.cpp │ ├── 3.3哈夫曼树【优先级队列】.cpp │ ├── 3.4二叉树遍历.cpp │ ├── 3.5二叉排序树.cpp │ ├── 4.10人见人爱【快速幂】.cpp │ ├── 4.2又一版A+B【进制转换】.cpp │ ├── 4.3数制转换【进制转换】.cpp │ ├── 4.5最大公约数【递归】.cpp │ ├── 4.5最大公约数【非递归】.cpp │ ├── 4.5最小公倍数.cpp │ ├── 4.6素数判定.cpp │ ├── 4.7素数【筛法】.cpp │ ├── 4.8质因数的个数.cpp │ ├── 5.1畅通工程【连通分量数】.cpp │ ├── 5.2More_is_better【最大分量顶点数】.cpp │ ├── 5.3还是畅通工程【最小生成树Kruskal】.cpp │ ├── 5.4Freckles【最小生成树Kruskal】.cpp │ ├── 5.5最短路【Floyd】.cpp │ ├── 5.6最短路【Dijkstra】.cpp │ ├── 5.7LeagalorNot【拓扑排序】.cpp │ ├── 6.1百鸡问题【搜索】.cpp │ ├── 6.2胜利大逃亡【3DBFS】.cpp │ ├── 7.1N阶楼梯上楼问题【动态规划】.cpp │ ├── 7.2不容易系列之一【错排问题】.cpp │ ├── 7.3拦截导弹【最长递增子序列LIS】.cpp │ └── 7.4Coincidence【最长公共子序列LCS】.cpp └── 第十届蓝桥杯C.C++A组省赛.pdf ├── template.cpp ├── 保研分享.md ├── 力扣中级算法 ├── 动态规划 │ ├── 不同路径.cpp │ ├── 最长上升子序列.cpp │ ├── 跳跃游戏.cpp │ └── 零钱兑换.cpp ├── 回溯算法 │ ├── 全排列.cpp │ ├── 子集.DFS.cpp │ ├── 子集.回溯.cpp │ ├── 生成括号.cpp │ └── 电话号码的字母组合.cpp └── 树和图 │ ├── 中序遍历二叉树.cpp │ ├── 二叉树的锯齿形层次遍历.cpp │ ├── 从前序与中序遍历序列构造二叉树.cpp │ ├── 填充每个节点的下一个右侧节点指针.cpp │ ├── 岛屿数量.BFS.cpp │ └── 岛屿数量.DFS.cpp ├── 力扣初级算法 ├── 二叉树 │ └── 二叉树的最大深度.递归.cpp ├── 位运算 │ └── 汉明距离.cpp ├── 动态规划 │ ├── 买卖股票的最佳时机.cpp │ ├── 打家劫舍.cpp │ ├── 最大子序和.cpp │ └── 爬楼梯.cpp ├── 字符串 │ ├── KMP算法.md │ ├── 反转字符串.cpp │ ├── 字符串中的第一个唯一字符.cpp │ ├── 实现 strStr().cpp │ ├── 报数.cpp │ ├── 整数反转.cpp │ ├── 最长公共前缀.cpp │ ├── 有效的字母异位词.cpp │ └── 验证回文串.cpp ├── 数学 │ ├── 3的幂.cpp │ └── 计数质数.cpp ├── 数组 │ ├── 两个数组的交集II.cpp │ ├── 两数之和.cpp │ ├── 买卖股票的最佳时机.cpp │ ├── 从排序数组中删除重复项.cpp │ ├── 加一.cpp │ ├── 只出现一次的数字.cpp │ ├── 存在重复元素.cpp │ ├── 旋转图像.cpp │ ├── 旋转数组.cpp │ ├── 有效的数独.cpp │ └── 移动零.cpp ├── 树 │ └── 二叉树的层次遍历.cpp └── 链表 │ ├── 删除链表中的节点.cpp │ ├── 反转链表.cpp │ └── 回文链表.cpp ├── 机试-算法与实现.md ├── 机试技巧.md └── 洛谷 ├── P1352.没有上司的舞会.cpp ├── 交叉模拟 ├── P1031.均分纸牌.cpp └── 小结.md ├── 动态规划的背包问题 ├── P1048采药.cpp ├── P1049装箱问题.cpp ├── P1060开心的金明.cpp ├── P1064金明的预算方案.cpp ├── P1164小A点菜.cpp ├── P1616疯狂的采药.cpp └── 小结.md ├── 多维动态规划 └── P1387.最大正方形.cpp ├── 广度优先搜索 └── P1162.填涂颜色.cpp ├── 排序 ├── P1059.明明的随机数.cpp └── 小结.md ├── 普及常见模板 ├── P3366.最小生成树.cpp ├── P3367.并查集.cpp ├── P3371.单源最短路径弱化版.cpp ├── P3383.线性筛素数.cpp ├── P4779.单源最短路径标准版.cpp └── 小结.md ├── 普及综合练习 ├── P1108.低价购买.cpp ├── P1363.幻象迷宫.cpp └── P1478.陶陶摘苹果升级版.cpp ├── 最短路问题 ├── P1144.最短路计数.cpp ├── P1339[USACO09OCT]热浪HeatWave.cpp ├── P1346电车.cpp └── 小结.md ├── 树形数据结构 ├── P1087.FBI树.cpp ├── P1305.新二叉树.cpp └── 小结.md ├── 深度优先搜索 ├── P1040.加分二叉树.cpp ├── P1101.单词方阵.cpp ├── P1219.八皇后.cpp ├── P1605.迷宫.cpp └── 小结.md ├── 简单数学 ├── P1865.A%BProblem.cpp └── 小结.md ├── 简单的模拟 └── P1003.铺地毯.cpp ├── 线性动态规划 ├── P1020导弹拦截.cpp ├── P1091合唱队形.cpp ├── P1104相似基因.cpp ├── P1280尼克的任务.cpp ├── P1880石子合并.cpp └── 小结.md ├── 线性数据结构 ├── P1160.队列安排.cpp └── P1449.后缀表达式.cpp ├── 递推与递归二分 ├── P1025数的二分.cpp ├── P1057传球游戏.cpp ├── P1135奇怪的电梯.cpp ├── P1192台阶问题.cpp └── 小结.md └── 高精度算法 ├── P1601.A+BProblem高精.cpp └── P1604.B进制星球.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/.gitignore -------------------------------------------------------------------------------- /Algorithm/BFS/POJ3278.Catch That Cow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/BFS/POJ3278.Catch That Cow.cpp -------------------------------------------------------------------------------- /Algorithm/BinarySearch/Aggressive cows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/BinarySearch/Aggressive cows.cpp -------------------------------------------------------------------------------- /Algorithm/DFS/4103.踩方格.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DFS/4103.踩方格.cpp -------------------------------------------------------------------------------- /Algorithm/DFS/走迷宫.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DFS/走迷宫.cpp -------------------------------------------------------------------------------- /Algorithm/DFS/迷宫.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DFS/迷宫.cpp -------------------------------------------------------------------------------- /Algorithm/DynamicProgramming/1088.滑雪.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DynamicProgramming/1088.滑雪.cpp -------------------------------------------------------------------------------- /Algorithm/DynamicProgramming/1163.TheTriangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DynamicProgramming/1163.TheTriangle.cpp -------------------------------------------------------------------------------- /Algorithm/DynamicProgramming/1481.MaximumSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DynamicProgramming/1481.MaximumSum.cpp -------------------------------------------------------------------------------- /Algorithm/DynamicProgramming/2755.神奇的口袋.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DynamicProgramming/2755.神奇的口袋.cpp -------------------------------------------------------------------------------- /Algorithm/DynamicProgramming/HDU1024.MaxSumPlusPlus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DynamicProgramming/HDU1024.MaxSumPlusPlus.cpp -------------------------------------------------------------------------------- /Algorithm/DynamicProgramming/LeetCode.97.InterleavingStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DynamicProgramming/LeetCode.97.InterleavingStrings.cpp -------------------------------------------------------------------------------- /Algorithm/DynamicProgramming/POJ3181Dollar_Dayz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DynamicProgramming/POJ3181Dollar_Dayz.cpp -------------------------------------------------------------------------------- /Algorithm/DynamicProgramming/最优二叉搜索树.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DynamicProgramming/最优二叉搜索树.cpp -------------------------------------------------------------------------------- /Algorithm/DynamicProgramming/课程大作业.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/DynamicProgramming/课程大作业.cpp -------------------------------------------------------------------------------- /Algorithm/GameTheory/1067.取石子游戏.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/GameTheory/1067.取石子游戏.cpp -------------------------------------------------------------------------------- /Algorithm/Graph/3159.Candies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Graph/3159.Candies.cpp -------------------------------------------------------------------------------- /Algorithm/Graph/POJ3259.Wormholes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Graph/POJ3259.Wormholes.cpp -------------------------------------------------------------------------------- /Algorithm/Graph/POJ3268.SilverCowParty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Graph/POJ3268.SilverCowParty.cpp -------------------------------------------------------------------------------- /Algorithm/HighPrecision/BigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/HighPrecision/BigInteger.cpp -------------------------------------------------------------------------------- /Algorithm/HighPrecision/BigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/HighPrecision/BigInteger.h -------------------------------------------------------------------------------- /Algorithm/HighPrecision/NOI.1.6.12.计算2的N次方.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/HighPrecision/NOI.1.6.12.计算2的N次方.cpp -------------------------------------------------------------------------------- /Algorithm/HighPrecision/NOI.1.6.13.大整数的因子.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/HighPrecision/NOI.1.6.13.大整数的因子.cpp -------------------------------------------------------------------------------- /Algorithm/HighPrecision/NOI.1.6.14.求10000以内n的阶乘.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/HighPrecision/NOI.1.6.14.求10000以内n的阶乘.cpp -------------------------------------------------------------------------------- /Algorithm/HighPrecision/NOI.1.6.15.阶乘和.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/HighPrecision/NOI.1.6.15.阶乘和.cpp -------------------------------------------------------------------------------- /Algorithm/HighPrecision/NOI1.6.10.大整数加法.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/HighPrecision/NOI1.6.10.大整数加法.cpp -------------------------------------------------------------------------------- /Algorithm/HighPrecision/NOI1.6.11.大整数减法.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/HighPrecision/NOI1.6.11.大整数减法.cpp -------------------------------------------------------------------------------- /Algorithm/HighPrecision/POJ1220NumberBaseConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/HighPrecision/POJ1220NumberBaseConversion.cpp -------------------------------------------------------------------------------- /Algorithm/HighPrecision/百练2738.实数加法.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/HighPrecision/百练2738.实数加法.cpp -------------------------------------------------------------------------------- /Algorithm/Math/copy_and_submit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Math/copy_and_submit.cpp -------------------------------------------------------------------------------- /Algorithm/Math/管管.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Math/管管.cpp -------------------------------------------------------------------------------- /Algorithm/Recursion/2746.约瑟夫问题.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Recursion/2746.约瑟夫问题.cpp -------------------------------------------------------------------------------- /Algorithm/Simulation/3750.魔兽世界.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Simulation/3750.魔兽世界.cpp -------------------------------------------------------------------------------- /Algorithm/Simulation/874.WalkingRobotSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Simulation/874.WalkingRobotSimulation.cpp -------------------------------------------------------------------------------- /Algorithm/Sort/POJ2388_one_way.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Sort/POJ2388_one_way.cpp -------------------------------------------------------------------------------- /Algorithm/Sort/POJ2388_quick_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Sort/POJ2388_quick_select.cpp -------------------------------------------------------------------------------- /Algorithm/Sort/POJ2388_three_pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Sort/POJ2388_three_pointers.cpp -------------------------------------------------------------------------------- /Algorithm/Sort/POJ2388_two_ways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Sort/POJ2388_two_ways.cpp -------------------------------------------------------------------------------- /Algorithm/Sort/quicksort_one_way.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Sort/quicksort_one_way.cpp -------------------------------------------------------------------------------- /Algorithm/Sort/quicksort_three_pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Sort/quicksort_three_pointers.cpp -------------------------------------------------------------------------------- /Algorithm/Sort/quicksort_two_ways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Sort/quicksort_two_ways.cpp -------------------------------------------------------------------------------- /Algorithm/Tree/POJ1258.Agri-Net[Kruskal].cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Tree/POJ1258.Agri-Net[Kruskal].cpp -------------------------------------------------------------------------------- /Algorithm/Tree/POJ1258.Agri-Net[Prim].cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Tree/POJ1258.Agri-Net[Prim].cpp -------------------------------------------------------------------------------- /Algorithm/Tree/POJ3253.Fence Repair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Tree/POJ3253.Fence Repair.cpp -------------------------------------------------------------------------------- /Algorithm/Trie/WYJ和渡边梨加.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/Trie/WYJ和渡边梨加.cpp -------------------------------------------------------------------------------- /Algorithm/UnionFind/POJ2492.A Bug's Life.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Algorithm/UnionFind/POJ2492.A Bug's Life.cpp -------------------------------------------------------------------------------- /CCF/201803/2.碰撞的小球.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/CCF/201803/2.碰撞的小球.cpp -------------------------------------------------------------------------------- /CCF/201803/3.URL映射.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/CCF/201803/3.URL映射.cpp -------------------------------------------------------------------------------- /CCF/201812/1.小明上学.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/CCF/201812/1.小明上学.cpp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/LICENSE -------------------------------------------------------------------------------- /PAT甲级/1001.A+BFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1001.A+BFormat.cpp -------------------------------------------------------------------------------- /PAT甲级/1002.A+BforPolynomials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1002.A+BforPolynomials.cpp -------------------------------------------------------------------------------- /PAT甲级/1003.Emergency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1003.Emergency.cpp -------------------------------------------------------------------------------- /PAT甲级/1004.CountingLeaves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1004.CountingLeaves.cpp -------------------------------------------------------------------------------- /PAT甲级/1005.SpellItRight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1005.SpellItRight.cpp -------------------------------------------------------------------------------- /PAT甲级/1006.SignInandSignOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1006.SignInandSignOut.cpp -------------------------------------------------------------------------------- /PAT甲级/1007.MaximumSubsequenceSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1007.MaximumSubsequenceSum.cpp -------------------------------------------------------------------------------- /PAT甲级/1008.Elevator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1008.Elevator.cpp -------------------------------------------------------------------------------- /PAT甲级/1009.ProductOfPolynomials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1009.ProductOfPolynomials.cpp -------------------------------------------------------------------------------- /PAT甲级/1010.Radix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1010.Radix.cpp -------------------------------------------------------------------------------- /PAT甲级/1011.WorldCupBetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1011.WorldCupBetting.cpp -------------------------------------------------------------------------------- /PAT甲级/1012.TheBestBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1012.TheBestBank.cpp -------------------------------------------------------------------------------- /PAT甲级/1013.BattleOverCities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1013.BattleOverCities.cpp -------------------------------------------------------------------------------- /PAT甲级/1014.WaitinginLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1014.WaitinginLine.cpp -------------------------------------------------------------------------------- /PAT甲级/1015.ReversiblePrimes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1015.ReversiblePrimes.cpp -------------------------------------------------------------------------------- /PAT甲级/1016.PhoneBills.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1016.PhoneBills.cpp -------------------------------------------------------------------------------- /PAT甲级/1019.GeneralPalindromicNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1019.GeneralPalindromicNumber.cpp -------------------------------------------------------------------------------- /PAT甲级/1020.TreeTraversals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1020.TreeTraversals.cpp -------------------------------------------------------------------------------- /PAT甲级/1021.DeepestRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1021.DeepestRoot.cpp -------------------------------------------------------------------------------- /PAT甲级/1022.DigitalLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1022.DigitalLibrary.cpp -------------------------------------------------------------------------------- /PAT甲级/1023.HaveFunWithNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1023.HaveFunWithNumbers.cpp -------------------------------------------------------------------------------- /PAT甲级/1024.PalindromicNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1024.PalindromicNumber.cpp -------------------------------------------------------------------------------- /PAT甲级/1025.PATRanking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1025.PATRanking.cpp -------------------------------------------------------------------------------- /PAT甲级/1026.TableTennis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1026.TableTennis.cpp -------------------------------------------------------------------------------- /PAT甲级/1027.ColorsinMars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1027.ColorsinMars.cpp -------------------------------------------------------------------------------- /PAT甲级/1028.ListSorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1028.ListSorting.cpp -------------------------------------------------------------------------------- /PAT甲级/1029.Median.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1029.Median.cpp -------------------------------------------------------------------------------- /PAT甲级/1030.TravelPlan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1030.TravelPlan.cpp -------------------------------------------------------------------------------- /PAT甲级/1031.HelloWorldForU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1031.HelloWorldForU.cpp -------------------------------------------------------------------------------- /PAT甲级/1032.Sharing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1032.Sharing.cpp -------------------------------------------------------------------------------- /PAT甲级/1033.ToFillorNottoFill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1033.ToFillorNottoFill.cpp -------------------------------------------------------------------------------- /PAT甲级/1034.HeadOfAGang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1034.HeadOfAGang.cpp -------------------------------------------------------------------------------- /PAT甲级/1048.FindCoins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1048.FindCoins.cpp -------------------------------------------------------------------------------- /PAT甲级/1099.BuildABinarySearchTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1099.BuildABinarySearchTree.cpp -------------------------------------------------------------------------------- /PAT甲级/1101.QuickSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1101.QuickSort.cpp -------------------------------------------------------------------------------- /PAT甲级/1102.InvertABinaryTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1102.InvertABinaryTree.cpp -------------------------------------------------------------------------------- /PAT甲级/1103.IntegerFactorization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1103.IntegerFactorization.cpp -------------------------------------------------------------------------------- /PAT甲级/1104.SumofNumberSegments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1104.SumofNumberSegments.cpp -------------------------------------------------------------------------------- /PAT甲级/1105.SpiralMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1105.SpiralMatrix.cpp -------------------------------------------------------------------------------- /PAT甲级/1108.FindingAverage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1108.FindingAverage.cpp -------------------------------------------------------------------------------- /PAT甲级/1110.CompleteBinaryTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1110.CompleteBinaryTree.cpp -------------------------------------------------------------------------------- /PAT甲级/1111.OnlineMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1111.OnlineMap.cpp -------------------------------------------------------------------------------- /PAT甲级/1112.StuckedKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1112.StuckedKeyboard.cpp -------------------------------------------------------------------------------- /PAT甲级/1113.IntegerSetPartition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1113.IntegerSetPartition.cpp -------------------------------------------------------------------------------- /PAT甲级/1114.FamilyProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1114.FamilyProperty.cpp -------------------------------------------------------------------------------- /PAT甲级/1115.CountingNodesInABST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1115.CountingNodesInABST.cpp -------------------------------------------------------------------------------- /PAT甲级/1116.ComeonLetsC .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1116.ComeonLetsC .cpp -------------------------------------------------------------------------------- /PAT甲级/1117.EddingtonNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1117.EddingtonNumber.cpp -------------------------------------------------------------------------------- /PAT甲级/1118.BirdsInForest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1118.BirdsInForest.cpp -------------------------------------------------------------------------------- /PAT甲级/1119.PreandPostorderTraversals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1119.PreandPostorderTraversals.cpp -------------------------------------------------------------------------------- /PAT甲级/1120.FriendNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1120.FriendNumbers.cpp -------------------------------------------------------------------------------- /PAT甲级/1121.DamnSingle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1121.DamnSingle.cpp -------------------------------------------------------------------------------- /PAT甲级/1122.HamiltonianCycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1122.HamiltonianCycle.cpp -------------------------------------------------------------------------------- /PAT甲级/1123.IsItACompleteAVLTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1123.IsItACompleteAVLTree.cpp -------------------------------------------------------------------------------- /PAT甲级/1124.RaffleforWeiboFollowers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1124.RaffleforWeiboFollowers.cpp -------------------------------------------------------------------------------- /PAT甲级/1125.ChaintheRopes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1125.ChaintheRopes.cpp -------------------------------------------------------------------------------- /PAT甲级/1126.EulerianPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1126.EulerianPath.cpp -------------------------------------------------------------------------------- /PAT甲级/1127.ZigZaggingOnATree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1127.ZigZaggingOnATree.cpp -------------------------------------------------------------------------------- /PAT甲级/1128.NQueensPuzzle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1128.NQueensPuzzle.cpp -------------------------------------------------------------------------------- /PAT甲级/1129.RecommendationSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1129.RecommendationSystem.cpp -------------------------------------------------------------------------------- /PAT甲级/1130.InfixExpression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1130.InfixExpression.cpp -------------------------------------------------------------------------------- /PAT甲级/1131.SubwayMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1131.SubwayMap.cpp -------------------------------------------------------------------------------- /PAT甲级/1132.CutInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1132.CutInteger.cpp -------------------------------------------------------------------------------- /PAT甲级/1133.SplittingALinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1133.SplittingALinkedList.cpp -------------------------------------------------------------------------------- /PAT甲级/1134.VertexCover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1134.VertexCover.cpp -------------------------------------------------------------------------------- /PAT甲级/1135.IsItARedBlackTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1135.IsItARedBlackTree.cpp -------------------------------------------------------------------------------- /PAT甲级/1136.ADelayedPalindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1136.ADelayedPalindrome.cpp -------------------------------------------------------------------------------- /PAT甲级/1137.FinalGrading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1137.FinalGrading.cpp -------------------------------------------------------------------------------- /PAT甲级/1138.PostorderTraversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1138.PostorderTraversal.cpp -------------------------------------------------------------------------------- /PAT甲级/1139.FirstContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1139.FirstContact.cpp -------------------------------------------------------------------------------- /PAT甲级/1140.LookAndSaySequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1140.LookAndSaySequence.cpp -------------------------------------------------------------------------------- /PAT甲级/1141PATRankingofInstitutions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1141PATRankingofInstitutions.cpp -------------------------------------------------------------------------------- /PAT甲级/1142.MaximalClique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1142.MaximalClique.cpp -------------------------------------------------------------------------------- /PAT甲级/1143.LowestCommonAncestor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1143.LowestCommonAncestor.cpp -------------------------------------------------------------------------------- /PAT甲级/1144.TheMissingNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1144.TheMissingNumber.cpp -------------------------------------------------------------------------------- /PAT甲级/1145.HashingAverageSearchTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1145.HashingAverageSearchTime.cpp -------------------------------------------------------------------------------- /PAT甲级/1146.TopologicalOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1146.TopologicalOrder.cpp -------------------------------------------------------------------------------- /PAT甲级/1147.Heaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1147.Heaps.cpp -------------------------------------------------------------------------------- /PAT甲级/1148.WerewolfSimpleVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1148.WerewolfSimpleVersion.cpp -------------------------------------------------------------------------------- /PAT甲级/1149.DangerousGoodsPackaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1149.DangerousGoodsPackaging.cpp -------------------------------------------------------------------------------- /PAT甲级/1150.TravellingSalesmanProblem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1150.TravellingSalesmanProblem.cpp -------------------------------------------------------------------------------- /PAT甲级/1151LCAinaBinaryTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1151LCAinaBinaryTree.cpp -------------------------------------------------------------------------------- /PAT甲级/1152.GoogleRecruitment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1152.GoogleRecruitment.cpp -------------------------------------------------------------------------------- /PAT甲级/1153.DecodeRegistrationCardofPAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1153.DecodeRegistrationCardofPAT.cpp -------------------------------------------------------------------------------- /PAT甲级/1154.VertexColoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1154.VertexColoring.cpp -------------------------------------------------------------------------------- /PAT甲级/1155.HeapPaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/1155.HeapPaths.cpp -------------------------------------------------------------------------------- /PAT甲级/头文件.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/头文件.cpp -------------------------------------------------------------------------------- /PAT甲级/小结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/小结.md -------------------------------------------------------------------------------- /PAT甲级/总结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/PAT甲级/总结.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/README.md -------------------------------------------------------------------------------- /Simulation/2016计算机学科夏令营上机考试/G.重建二叉树[已知前序中序求后序].cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2016计算机学科夏令营上机考试/G.重建二叉树[已知前序中序求后序].cpp -------------------------------------------------------------------------------- /Simulation/2017北京大学大数据研究中心夏令营上机考试/POJ3669.Meteor Shower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2017北京大学大数据研究中心夏令营上机考试/POJ3669.Meteor Shower.cpp -------------------------------------------------------------------------------- /Simulation/2017计算机学科夏令营上机考前练习/B.单词翻转.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2017计算机学科夏令营上机考前练习/B.单词翻转.cpp -------------------------------------------------------------------------------- /Simulation/2018北京大学计算机学科夏令营上机考试/A.计算两个日期之间的天数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018北京大学计算机学科夏令营上机考试/A.计算两个日期之间的天数.cpp -------------------------------------------------------------------------------- /Simulation/2018北京大学计算机学科夏令营上机考试/B.回文子串.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018北京大学计算机学科夏令营上机考试/B.回文子串.cpp -------------------------------------------------------------------------------- /Simulation/2018北京大学计算机学科夏令营上机考试/E.重要逆序对.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018北京大学计算机学科夏令营上机考试/E.重要逆序对.cpp -------------------------------------------------------------------------------- /Simulation/2018北京大学计算机学科夏令营上机考试/F.Tram [Dijkstra].cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018北京大学计算机学科夏令营上机考试/F.Tram [Dijkstra].cpp -------------------------------------------------------------------------------- /Simulation/2018北京大学计算机学科夏令营上机考试/F.Tram [Floyd].cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018北京大学计算机学科夏令营上机考试/F.Tram [Floyd].cpp -------------------------------------------------------------------------------- /Simulation/2018北京大学计算机学科夏令营上机考试/G.食物链.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018北京大学计算机学科夏令营上机考试/G.食物链.cpp -------------------------------------------------------------------------------- /Simulation/2018南京大学计算机系夏令营/2.MissingNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018南京大学计算机系夏令营/2.MissingNumbers.cpp -------------------------------------------------------------------------------- /Simulation/2018年北京大学软件工程学科夏令营上机练习/A.判决素数个数【埃式筛法】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018年北京大学软件工程学科夏令营上机练习/A.判决素数个数【埃式筛法】.cpp -------------------------------------------------------------------------------- /Simulation/2018年北京大学软件工程学科夏令营上机练习/B.编码字符串.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018年北京大学软件工程学科夏令营上机练习/B.编码字符串.cpp -------------------------------------------------------------------------------- /Simulation/2018年北京大学软件工程学科夏令营上机练习/C.岛屿周长.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018年北京大学软件工程学科夏令营上机练习/C.岛屿周长.cpp -------------------------------------------------------------------------------- /Simulation/2018年北京大学软件工程学科夏令营上机练习/D.Safecracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018年北京大学软件工程学科夏令营上机练习/D.Safecracker.cpp -------------------------------------------------------------------------------- /Simulation/2018年北京大学软件工程学科夏令营上机练习/E.怪盗基德的滑翔翼[最长上升子序列].cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018年北京大学软件工程学科夏令营上机练习/E.怪盗基德的滑翔翼[最长上升子序列].cpp -------------------------------------------------------------------------------- /Simulation/2018年北京大学软件工程学科夏令营上机练习/G.实现堆结构.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018年北京大学软件工程学科夏令营上机练习/G.实现堆结构.cpp -------------------------------------------------------------------------------- /Simulation/2018清华计算机上机练习/A/running.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018清华计算机上机练习/A/running.in -------------------------------------------------------------------------------- /Simulation/2018清华计算机上机练习/A/思考熊的马拉松.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018清华计算机上机练习/A/思考熊的马拉松.cpp -------------------------------------------------------------------------------- /Simulation/2018清华计算机九推/过去的项链.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018清华计算机九推/过去的项链.cpp -------------------------------------------------------------------------------- /Simulation/2018清华软院九推/大整数运算.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018清华软院九推/大整数运算.cpp -------------------------------------------------------------------------------- /Simulation/2018清华软院夏令营/1.回文数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018清华软院夏令营/1.回文数.cpp -------------------------------------------------------------------------------- /Simulation/2018清华软院夏令营/2.上凸函数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018清华软院夏令营/2.上凸函数.cpp -------------------------------------------------------------------------------- /Simulation/2018清华软院夏令营/3.质因子.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018清华软院夏令营/3.质因子.cpp -------------------------------------------------------------------------------- /Simulation/2018研究生推免上机考试/A.区间内的真素数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018研究生推免上机考试/A.区间内的真素数.cpp -------------------------------------------------------------------------------- /Simulation/2018研究生推免上机考试/B.简单密码.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018研究生推免上机考试/B.简单密码.cpp -------------------------------------------------------------------------------- /Simulation/2018研究生推免上机考试/E.热血格斗场.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2018研究生推免上机考试/E.热血格斗场.cpp -------------------------------------------------------------------------------- /Simulation/2019信科研究生上机测试/A.护林员盖房子.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2019信科研究生上机测试/A.护林员盖房子.cpp -------------------------------------------------------------------------------- /Simulation/2019信科研究生上机测试/B.方便记忆的电话号码.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/2019信科研究生上机测试/B.方便记忆的电话号码.cpp -------------------------------------------------------------------------------- /Simulation/NOI/1.6一维数组/8.石头剪刀布.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/1.6一维数组/8.石头剪刀布.cpp -------------------------------------------------------------------------------- /Simulation/NOI/1.7字符串/34.回文子串.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/1.7字符串/34.回文子串.cpp -------------------------------------------------------------------------------- /Simulation/NOI/1.7字符串/字符串移位包含问题.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/1.7字符串/字符串移位包含问题.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.2递归和自调用函数/2694.逆波兰表达式.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.2递归和自调用函数/2694.逆波兰表达式.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.5搜索/1388.Lake Counting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.5搜索/1388.Lake Counting.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.5搜索/1789.算24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.5搜索/1789.算24.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.5搜索/666.放苹果.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.5搜索/666.放苹果.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.5搜索/917.KnightMoves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.5搜索/917.KnightMoves.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/1759.最长上升子序列.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/1759.最长上升子序列.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/1775.采药.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/1775.采药.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/1808.公共子序列.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/1808.公共子序列.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/1944.吃糖果.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/1944.吃糖果.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/2000.最长公共子上升序列.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/2000.最长公共子上升序列.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/3532.最长上升子序列和.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/3532.最长上升子序列和.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/4152.最佳加法表达式.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/4152.最佳加法表达式.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/4982.踩方格.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/4982.踩方格.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/8780.拦截导弹.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/8780.拦截导弹.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/8785.装箱问题.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/8785.装箱问题.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/9265.取数游戏.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/9265.取数游戏.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.6动态规划/9290.Pku2680_Computer_Transformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.6动态规划/9290.Pku2680_Computer_Transformation.cpp -------------------------------------------------------------------------------- /Simulation/NOI/2.7算法效率/砝码称重[多重背包].cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/2.7算法效率/砝码称重[多重背包].cpp -------------------------------------------------------------------------------- /Simulation/NOI/3.7数据结构之堆/2726.集合问题.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/3.7数据结构之堆/2726.集合问题.cpp -------------------------------------------------------------------------------- /Simulation/NOI/3.9C++STL/1806.词典.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/3.9C++STL/1806.词典.cpp -------------------------------------------------------------------------------- /Simulation/NOI/3.9C++STL/3345.priority_queue练习题.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/NOI/3.9C++STL/3345.priority_queue练习题.cpp -------------------------------------------------------------------------------- /Simulation/模拟练习.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/模拟练习.md -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.10查找学生信息【二分查找】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.10查找学生信息【二分查找】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.11FatMouse'Trade【贪心】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.11FatMouse'Trade【贪心】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.12今年暑假不AC【非重叠区间】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.12今年暑假不AC【非重叠区间】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.1排序【冒泡排序】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.1排序【冒泡排序】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.1排序【自定义比较函数】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.1排序【自定义比较函数】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.2成绩排序【自定义比较函数】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.2成绩排序【自定义比较函数】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.2成绩排序【重载运算符】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.2成绩排序【重载运算符】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.3日期差值.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.3日期差值.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.4Day_of_week.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.4Day_of_week.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.5统计同成绩学生人数【Hash】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.5统计同成绩学生人数【Hash】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.6Sort【Hash】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.6Sort【Hash】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.7输出梯形【排版】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.7输出梯形【排版】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.8叠筐【排版】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.8叠筐【排版】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/2.9找x【线性查找】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/2.9找x【线性查找】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/3.1括号匹配问题【栈的应用】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/3.1括号匹配问题【栈的应用】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/3.2简单计算器.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/3.2简单计算器.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/3.3哈夫曼树【优先级队列】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/3.3哈夫曼树【优先级队列】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/3.4二叉树遍历.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/3.4二叉树遍历.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/3.5二叉排序树.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/3.5二叉排序树.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/4.10人见人爱【快速幂】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/4.10人见人爱【快速幂】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/4.2又一版A+B【进制转换】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/4.2又一版A+B【进制转换】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/4.3数制转换【进制转换】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/4.3数制转换【进制转换】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/4.5最大公约数【递归】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/4.5最大公约数【递归】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/4.5最大公约数【非递归】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/4.5最大公约数【非递归】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/4.5最小公倍数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/4.5最小公倍数.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/4.6素数判定.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/4.6素数判定.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/4.7素数【筛法】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/4.7素数【筛法】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/4.8质因数的个数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/4.8质因数的个数.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/5.1畅通工程【连通分量数】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/5.1畅通工程【连通分量数】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/5.2More_is_better【最大分量顶点数】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/5.2More_is_better【最大分量顶点数】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/5.3还是畅通工程【最小生成树Kruskal】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/5.3还是畅通工程【最小生成树Kruskal】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/5.4Freckles【最小生成树Kruskal】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/5.4Freckles【最小生成树Kruskal】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/5.5最短路【Floyd】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/5.5最短路【Floyd】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/5.6最短路【Dijkstra】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/5.6最短路【Dijkstra】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/5.7LeagalorNot【拓扑排序】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/5.7LeagalorNot【拓扑排序】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/6.1百鸡问题【搜索】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/6.1百鸡问题【搜索】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/6.2胜利大逃亡【3DBFS】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/6.2胜利大逃亡【3DBFS】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/7.1N阶楼梯上楼问题【动态规划】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/7.1N阶楼梯上楼问题【动态规划】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/7.2不容易系列之一【错排问题】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/7.2不容易系列之一【错排问题】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/7.3拦截导弹【最长递增子序列LIS】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/7.3拦截导弹【最长递增子序列LIS】.cpp -------------------------------------------------------------------------------- /Simulation/王道论坛计算机考研机试指南/7.4Coincidence【最长公共子序列LCS】.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/王道论坛计算机考研机试指南/7.4Coincidence【最长公共子序列LCS】.cpp -------------------------------------------------------------------------------- /Simulation/第十届蓝桥杯C.C++A组省赛.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/Simulation/第十届蓝桥杯C.C++A组省赛.pdf -------------------------------------------------------------------------------- /template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/template.cpp -------------------------------------------------------------------------------- /保研分享.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/保研分享.md -------------------------------------------------------------------------------- /力扣中级算法/动态规划/不同路径.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/动态规划/不同路径.cpp -------------------------------------------------------------------------------- /力扣中级算法/动态规划/最长上升子序列.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/动态规划/最长上升子序列.cpp -------------------------------------------------------------------------------- /力扣中级算法/动态规划/跳跃游戏.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/动态规划/跳跃游戏.cpp -------------------------------------------------------------------------------- /力扣中级算法/动态规划/零钱兑换.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/动态规划/零钱兑换.cpp -------------------------------------------------------------------------------- /力扣中级算法/回溯算法/全排列.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/回溯算法/全排列.cpp -------------------------------------------------------------------------------- /力扣中级算法/回溯算法/子集.DFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/回溯算法/子集.DFS.cpp -------------------------------------------------------------------------------- /力扣中级算法/回溯算法/子集.回溯.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/回溯算法/子集.回溯.cpp -------------------------------------------------------------------------------- /力扣中级算法/回溯算法/生成括号.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/回溯算法/生成括号.cpp -------------------------------------------------------------------------------- /力扣中级算法/回溯算法/电话号码的字母组合.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/回溯算法/电话号码的字母组合.cpp -------------------------------------------------------------------------------- /力扣中级算法/树和图/中序遍历二叉树.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/树和图/中序遍历二叉树.cpp -------------------------------------------------------------------------------- /力扣中级算法/树和图/二叉树的锯齿形层次遍历.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/树和图/二叉树的锯齿形层次遍历.cpp -------------------------------------------------------------------------------- /力扣中级算法/树和图/从前序与中序遍历序列构造二叉树.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/树和图/从前序与中序遍历序列构造二叉树.cpp -------------------------------------------------------------------------------- /力扣中级算法/树和图/填充每个节点的下一个右侧节点指针.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/树和图/填充每个节点的下一个右侧节点指针.cpp -------------------------------------------------------------------------------- /力扣中级算法/树和图/岛屿数量.BFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/树和图/岛屿数量.BFS.cpp -------------------------------------------------------------------------------- /力扣中级算法/树和图/岛屿数量.DFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣中级算法/树和图/岛屿数量.DFS.cpp -------------------------------------------------------------------------------- /力扣初级算法/二叉树/二叉树的最大深度.递归.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/二叉树/二叉树的最大深度.递归.cpp -------------------------------------------------------------------------------- /力扣初级算法/位运算/汉明距离.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/位运算/汉明距离.cpp -------------------------------------------------------------------------------- /力扣初级算法/动态规划/买卖股票的最佳时机.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/动态规划/买卖股票的最佳时机.cpp -------------------------------------------------------------------------------- /力扣初级算法/动态规划/打家劫舍.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/动态规划/打家劫舍.cpp -------------------------------------------------------------------------------- /力扣初级算法/动态规划/最大子序和.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/动态规划/最大子序和.cpp -------------------------------------------------------------------------------- /力扣初级算法/动态规划/爬楼梯.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/动态规划/爬楼梯.cpp -------------------------------------------------------------------------------- /力扣初级算法/字符串/KMP算法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/字符串/KMP算法.md -------------------------------------------------------------------------------- /力扣初级算法/字符串/反转字符串.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/字符串/反转字符串.cpp -------------------------------------------------------------------------------- /力扣初级算法/字符串/字符串中的第一个唯一字符.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/字符串/字符串中的第一个唯一字符.cpp -------------------------------------------------------------------------------- /力扣初级算法/字符串/实现 strStr().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/字符串/实现 strStr().cpp -------------------------------------------------------------------------------- /力扣初级算法/字符串/报数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/字符串/报数.cpp -------------------------------------------------------------------------------- /力扣初级算法/字符串/整数反转.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/字符串/整数反转.cpp -------------------------------------------------------------------------------- /力扣初级算法/字符串/最长公共前缀.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/字符串/最长公共前缀.cpp -------------------------------------------------------------------------------- /力扣初级算法/字符串/有效的字母异位词.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/字符串/有效的字母异位词.cpp -------------------------------------------------------------------------------- /力扣初级算法/字符串/验证回文串.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/字符串/验证回文串.cpp -------------------------------------------------------------------------------- /力扣初级算法/数学/3的幂.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数学/3的幂.cpp -------------------------------------------------------------------------------- /力扣初级算法/数学/计数质数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数学/计数质数.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/两个数组的交集II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/两个数组的交集II.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/两数之和.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/两数之和.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/买卖股票的最佳时机.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/买卖股票的最佳时机.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/从排序数组中删除重复项.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/从排序数组中删除重复项.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/加一.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/加一.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/只出现一次的数字.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/只出现一次的数字.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/存在重复元素.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/存在重复元素.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/旋转图像.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/旋转图像.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/旋转数组.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/旋转数组.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/有效的数独.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/有效的数独.cpp -------------------------------------------------------------------------------- /力扣初级算法/数组/移动零.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/数组/移动零.cpp -------------------------------------------------------------------------------- /力扣初级算法/树/二叉树的层次遍历.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/树/二叉树的层次遍历.cpp -------------------------------------------------------------------------------- /力扣初级算法/链表/删除链表中的节点.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/链表/删除链表中的节点.cpp -------------------------------------------------------------------------------- /力扣初级算法/链表/反转链表.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/链表/反转链表.cpp -------------------------------------------------------------------------------- /力扣初级算法/链表/回文链表.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/力扣初级算法/链表/回文链表.cpp -------------------------------------------------------------------------------- /机试-算法与实现.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/机试-算法与实现.md -------------------------------------------------------------------------------- /机试技巧.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/机试技巧.md -------------------------------------------------------------------------------- /洛谷/P1352.没有上司的舞会.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/P1352.没有上司的舞会.cpp -------------------------------------------------------------------------------- /洛谷/交叉模拟/P1031.均分纸牌.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/交叉模拟/P1031.均分纸牌.cpp -------------------------------------------------------------------------------- /洛谷/交叉模拟/小结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/交叉模拟/小结.md -------------------------------------------------------------------------------- /洛谷/动态规划的背包问题/P1048采药.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/动态规划的背包问题/P1048采药.cpp -------------------------------------------------------------------------------- /洛谷/动态规划的背包问题/P1049装箱问题.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/动态规划的背包问题/P1049装箱问题.cpp -------------------------------------------------------------------------------- /洛谷/动态规划的背包问题/P1060开心的金明.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/动态规划的背包问题/P1060开心的金明.cpp -------------------------------------------------------------------------------- /洛谷/动态规划的背包问题/P1064金明的预算方案.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/动态规划的背包问题/P1064金明的预算方案.cpp -------------------------------------------------------------------------------- /洛谷/动态规划的背包问题/P1164小A点菜.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/动态规划的背包问题/P1164小A点菜.cpp -------------------------------------------------------------------------------- /洛谷/动态规划的背包问题/P1616疯狂的采药.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/动态规划的背包问题/P1616疯狂的采药.cpp -------------------------------------------------------------------------------- /洛谷/动态规划的背包问题/小结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/动态规划的背包问题/小结.md -------------------------------------------------------------------------------- /洛谷/多维动态规划/P1387.最大正方形.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/多维动态规划/P1387.最大正方形.cpp -------------------------------------------------------------------------------- /洛谷/广度优先搜索/P1162.填涂颜色.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/广度优先搜索/P1162.填涂颜色.cpp -------------------------------------------------------------------------------- /洛谷/排序/P1059.明明的随机数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/排序/P1059.明明的随机数.cpp -------------------------------------------------------------------------------- /洛谷/排序/小结.md: -------------------------------------------------------------------------------- 1 | # 排序 2 | 3 | ## P1059 明明的随机数 4 | 5 | - 使用 STL set 完美解决排序和集合大小的问题。 -------------------------------------------------------------------------------- /洛谷/普及常见模板/P3366.最小生成树.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/普及常见模板/P3366.最小生成树.cpp -------------------------------------------------------------------------------- /洛谷/普及常见模板/P3367.并查集.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/普及常见模板/P3367.并查集.cpp -------------------------------------------------------------------------------- /洛谷/普及常见模板/P3371.单源最短路径弱化版.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/普及常见模板/P3371.单源最短路径弱化版.cpp -------------------------------------------------------------------------------- /洛谷/普及常见模板/P3383.线性筛素数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/普及常见模板/P3383.线性筛素数.cpp -------------------------------------------------------------------------------- /洛谷/普及常见模板/P4779.单源最短路径标准版.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/普及常见模板/P4779.单源最短路径标准版.cpp -------------------------------------------------------------------------------- /洛谷/普及常见模板/小结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/普及常见模板/小结.md -------------------------------------------------------------------------------- /洛谷/普及综合练习/P1108.低价购买.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/普及综合练习/P1108.低价购买.cpp -------------------------------------------------------------------------------- /洛谷/普及综合练习/P1363.幻象迷宫.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/普及综合练习/P1363.幻象迷宫.cpp -------------------------------------------------------------------------------- /洛谷/普及综合练习/P1478.陶陶摘苹果升级版.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/普及综合练习/P1478.陶陶摘苹果升级版.cpp -------------------------------------------------------------------------------- /洛谷/最短路问题/P1144.最短路计数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/最短路问题/P1144.最短路计数.cpp -------------------------------------------------------------------------------- /洛谷/最短路问题/P1339[USACO09OCT]热浪HeatWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/最短路问题/P1339[USACO09OCT]热浪HeatWave.cpp -------------------------------------------------------------------------------- /洛谷/最短路问题/P1346电车.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/最短路问题/P1346电车.cpp -------------------------------------------------------------------------------- /洛谷/最短路问题/小结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/最短路问题/小结.md -------------------------------------------------------------------------------- /洛谷/树形数据结构/P1087.FBI树.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/树形数据结构/P1087.FBI树.cpp -------------------------------------------------------------------------------- /洛谷/树形数据结构/P1305.新二叉树.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/树形数据结构/P1305.新二叉树.cpp -------------------------------------------------------------------------------- /洛谷/树形数据结构/小结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/树形数据结构/小结.md -------------------------------------------------------------------------------- /洛谷/深度优先搜索/P1040.加分二叉树.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/深度优先搜索/P1040.加分二叉树.cpp -------------------------------------------------------------------------------- /洛谷/深度优先搜索/P1101.单词方阵.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/深度优先搜索/P1101.单词方阵.cpp -------------------------------------------------------------------------------- /洛谷/深度优先搜索/P1219.八皇后.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/深度优先搜索/P1219.八皇后.cpp -------------------------------------------------------------------------------- /洛谷/深度优先搜索/P1605.迷宫.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/深度优先搜索/P1605.迷宫.cpp -------------------------------------------------------------------------------- /洛谷/深度优先搜索/小结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/深度优先搜索/小结.md -------------------------------------------------------------------------------- /洛谷/简单数学/P1865.A%BProblem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/简单数学/P1865.A%BProblem.cpp -------------------------------------------------------------------------------- /洛谷/简单数学/小结.md: -------------------------------------------------------------------------------- 1 | # 简单数学 2 | 3 | ## P1865 A % B 问题 4 | 5 | 埃式筛法获得素数表,数组前缀和优化。 -------------------------------------------------------------------------------- /洛谷/简单的模拟/P1003.铺地毯.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/简单的模拟/P1003.铺地毯.cpp -------------------------------------------------------------------------------- /洛谷/线性动态规划/P1020导弹拦截.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/线性动态规划/P1020导弹拦截.cpp -------------------------------------------------------------------------------- /洛谷/线性动态规划/P1091合唱队形.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/线性动态规划/P1091合唱队形.cpp -------------------------------------------------------------------------------- /洛谷/线性动态规划/P1104相似基因.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/线性动态规划/P1104相似基因.cpp -------------------------------------------------------------------------------- /洛谷/线性动态规划/P1280尼克的任务.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/线性动态规划/P1280尼克的任务.cpp -------------------------------------------------------------------------------- /洛谷/线性动态规划/P1880石子合并.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/线性动态规划/P1880石子合并.cpp -------------------------------------------------------------------------------- /洛谷/线性动态规划/小结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/线性动态规划/小结.md -------------------------------------------------------------------------------- /洛谷/线性数据结构/P1160.队列安排.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/线性数据结构/P1160.队列安排.cpp -------------------------------------------------------------------------------- /洛谷/线性数据结构/P1449.后缀表达式.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/线性数据结构/P1449.后缀表达式.cpp -------------------------------------------------------------------------------- /洛谷/递推与递归二分/P1025数的二分.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/递推与递归二分/P1025数的二分.cpp -------------------------------------------------------------------------------- /洛谷/递推与递归二分/P1057传球游戏.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/递推与递归二分/P1057传球游戏.cpp -------------------------------------------------------------------------------- /洛谷/递推与递归二分/P1135奇怪的电梯.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/递推与递归二分/P1135奇怪的电梯.cpp -------------------------------------------------------------------------------- /洛谷/递推与递归二分/P1192台阶问题.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/递推与递归二分/P1192台阶问题.cpp -------------------------------------------------------------------------------- /洛谷/递推与递归二分/小结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/递推与递归二分/小结.md -------------------------------------------------------------------------------- /洛谷/高精度算法/P1601.A+BProblem高精.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/高精度算法/P1601.A+BProblem高精.cpp -------------------------------------------------------------------------------- /洛谷/高精度算法/P1604.B进制星球.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhshu/BaoYan-2019/HEAD/洛谷/高精度算法/P1604.B进制星球.cpp --------------------------------------------------------------------------------