├── .gitignore ├── 51Nod └── 1006.最长公共子序列Lcs │ └── 1006.最长公共子序列Lcs.py ├── BlueBridgeCup ├── Exercises │ ├── 入门训练 │ │ ├── A+B问题 │ │ │ ├── A+B问题.py │ │ │ └── input1.txt │ │ ├── BEGIN-2 序列求和 │ │ │ ├── BEGIN-2 序列求和.cpp │ │ │ └── BEGIN-2 序列求和.py │ │ ├── Fibonacci数列 │ │ │ ├── Fibonacci数列.py │ │ │ └── input1.txt │ │ └── 圆的面积 │ │ │ └── 圆的面积.py │ ├── 历届试题 │ │ ├── PREV-195-包子凑数.py │ │ ├── PREV-227-回文日期.py │ │ ├── PREV-25-城市建设.py │ │ ├── PREV-262-砝码称重.py │ │ ├── PREV-278-双向排序.py │ │ ├── PREV-281-时间显示.py │ │ ├── PREV-284-杨辉三角形.py │ │ ├── PREV-40-k倍区间.py │ │ ├── PREV-51-观光铁路.py │ │ ├── PREV-53-分考场.py │ │ ├── PREV-59-作物杂交.py │ │ ├── PREV-63-成绩统计.py │ │ ├── PREV-65-单词分析.py │ │ └── PREV-72-组合数问题 │ │ │ ├── PREV-72-组合数问题.py │ │ │ └── README.md │ ├── 基础练习 │ │ ├── 01字串 │ │ │ └── 试题 基础练习 01字串.py │ │ ├── BASIC-10 十进制转十六进制 │ │ │ ├── BASIC-10 十进制转十六进制.cpp │ │ │ └── BASIC-10 十进制转十六进制.py │ │ ├── BASIC-4 数列特征 │ │ │ └── BASIC-4 数列特征.py │ │ ├── BASIC-5 查找整数 │ │ │ └── BASIC-5 查找整数.py │ │ ├── BASIC-6 杨辉三角形 │ │ │ └── BASIC-6 杨辉三角形.py │ │ ├── BASIC-7 特殊的数字 │ │ │ └── BASIC-7 特殊的数字.py │ │ ├── BASIC-8 回文数 │ │ │ └── BASIC-8 回文数.py │ │ ├── BASIC-9 特殊回文数 │ │ │ └── BASIC-9 特殊回文数.py │ │ ├── 十六进制转八进制 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ ├── input1.txt │ │ │ ├── output1.txt │ │ │ └── 试题 基础练习 十六进制转八进制.py │ │ ├── 十六进制转十进制 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ └── 试题 基础练习 十六进制转十进制.py │ │ ├── 字母图形 │ │ │ └── 试题 基础练习 字母图形.py │ │ ├── 数列排序 │ │ │ ├── 试题 基础练习 数列排序.cpp │ │ │ └── 试题 基础练习 数列排序.py │ │ └── 闰年判断 │ │ │ └── 试题 基础练习 闰年判断.py │ ├── 算法提高 │ │ └── ADV-233 队列操作 │ │ │ ├── README.md │ │ │ └── python.py │ └── 算法训练 │ │ ├── ALGO-1 区间k大数查询 │ │ └── ALGO-1 区间k大数查询.py │ │ ├── ALGO-1-区间k大数查询 │ │ └── ALGO-1 区间k大数查询.py │ │ ├── ALGO-1005-数字游戏 │ │ ├── README.md │ │ └── python.py │ │ ├── ALGO-1006-拿金币 │ │ ├── README.md │ │ └── python.py │ │ ├── ALGO-1007-印章 │ │ └── python.py │ │ ├── ALGO-221 数据交换 │ │ ├── ALGO-221 数据交换.py │ │ ├── input1.txt │ │ └── output1.txt │ │ └── ALGO-221-数据交换 │ │ ├── ALGO-221 数据交换.py │ │ ├── input1.txt │ │ └── output1.txt └── Subject │ ├── 2013 │ ├── National _C_C++_A │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── code.py │ │ │ ├── input1.txt │ │ │ ├── output1.txt │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ ├── code.py │ │ │ ├── 图1.jpg │ │ │ ├── 数据 │ │ │ │ ├── input1.txt │ │ │ │ ├── input2.txt │ │ │ │ ├── input3.txt │ │ │ │ ├── input4.txt │ │ │ │ ├── input5.txt │ │ │ │ ├── output1.txt │ │ │ │ ├── output2.txt │ │ │ │ ├── output3.txt │ │ │ │ ├── output4.txt │ │ │ │ └── output5.txt │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目描述.txt │ │ └── 2013-决赛-C本科-A组.doc │ ├── National _C_C++_B │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── code.py │ │ │ ├── 图1.jpg │ │ │ ├── 评测数据 │ │ │ │ ├── input1.txt │ │ │ │ ├── input2.txt │ │ │ │ ├── input3.txt │ │ │ │ ├── input4.txt │ │ │ │ ├── input5.txt │ │ │ │ ├── output1.txt │ │ │ │ ├── output2.txt │ │ │ │ ├── output3.txt │ │ │ │ ├── output4.txt │ │ │ │ └── output5.txt │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ └── 2013-决赛-C本科-B组.doc │ ├── National _C_C++_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ └── 2013-决赛-C高职高专组.doc │ ├── National _Java_A │ │ ├── 1 │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 问题描述.txt │ │ └── 2013-决赛-Java本科-A组.doc │ ├── National _Java_B │ │ ├── 1 │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ ├── 图2.JPG │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ └── 2013-决赛-Java本科-B组.doc │ ├── National _Java_C │ │ ├── 1 │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 问题描述.txt │ │ └── 2013-决赛-Java高职高专组.doc │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103224 │ │ │ ├── 19103325 │ │ │ ├── 19103328 │ │ │ ├── 19103411 │ │ │ ├── 19103429 │ │ │ ├── 19105133 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103224.cpp │ │ │ ├── 19103325.c │ │ │ ├── 19103328.cpp │ │ │ ├── 19103411.cpp │ │ │ ├── 19103429.c │ │ │ ├── 19105133.c │ │ │ ├── code.py │ │ │ ├── 题目描述.txt │ │ │ └── 高斯日记.cpp │ │ ├── 2 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103224 │ │ │ ├── 19103328 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103224.cpp │ │ │ ├── 19103328.cpp │ │ │ ├── 2013A-2.cpp │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── 18023309 │ │ │ ├── 19103117 │ │ │ ├── 19103213 │ │ │ ├── 19103224 │ │ │ ├── 19103325 │ │ │ ├── 19103328 │ │ │ ├── 19103429 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103117.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103224.c │ │ │ ├── 19103325.c │ │ │ ├── 19103328.cpp │ │ │ ├── 19103429.c │ │ │ ├── code.py │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103411 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103411.cpp │ │ │ ├── code.py │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ ├── 18023309.cpp │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ ├── 18023309.cpp │ │ │ └── 题目描述.txt │ │ ├── 7 │ │ │ ├── 18023309.cpp │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 8 │ │ │ └── 题目描述.txt │ │ ├── 9 │ │ │ ├── p1.JPG │ │ │ ├── p2.JPG │ │ │ └── 题目描述.txt │ │ └── 10 │ │ │ ├── code.py │ │ │ ├── graph.png │ │ │ └── 题目描述.txt │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103214 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103214.cpp │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── 18023309 │ │ │ ├── 19103117 │ │ │ ├── 19103213 │ │ │ ├── 19103214 │ │ │ ├── 19103328 │ │ │ ├── 19103429 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103117.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103214.cpp │ │ │ ├── 19103328.c │ │ │ ├── 19103429.c │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103328 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103328.c │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 18023309 │ │ │ └── 18023309.cpp │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ ├── 7 │ │ │ └── 题目描述.txt │ │ ├── 8 │ │ │ └── 题目描述.txt │ │ ├── 9 │ │ │ └── 题目描述.txt │ │ └── 10 │ │ │ └── 题目描述.txt │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103429 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103429.c │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 18023309.cpp │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ ├── 7 │ │ │ └── 题目描述.txt │ │ ├── 8 │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 9 │ │ │ └── 题目描述.txt │ │ └── 10 │ │ │ ├── p1.JPG │ │ │ ├── p2.JPG │ │ │ └── 题目描述.txt │ ├── Province_Java_A │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ ├── 7 │ │ │ └── 题目描述.txt │ │ ├── 8 │ │ │ └── 题目描述.txt │ │ ├── 9 │ │ │ ├── p1.JPG │ │ │ ├── p2.JPG │ │ │ └── 题目描述.txt │ │ └── 10 │ │ │ └── 题目描述.txt │ ├── Province_Java_B │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ ├── 7 │ │ │ └── 题目描述.txt │ │ ├── 8 │ │ │ └── 题目描述.txt │ │ ├── 9 │ │ │ └── 题目描述.txt │ │ └── 10 │ │ │ └── 题目描述.txt │ └── Province_Java_C │ │ ├── 1 │ │ ├── code.py │ │ └── 题目描述.txt │ │ ├── 2 │ │ └── 题目描述.txt │ │ ├── 3 │ │ └── 题目描述.txt │ │ ├── 4 │ │ └── 题目描述.txt │ │ ├── 5 │ │ └── 题目描述.txt │ │ ├── 6 │ │ └── 题目描述.txt │ │ ├── 7 │ │ └── 题目描述.txt │ │ ├── 8 │ │ ├── p1.JPG │ │ └── 题目描述.txt │ │ ├── 9 │ │ └── 题目描述.txt │ │ └── 10 │ │ ├── p1.JPG │ │ ├── p2.JPG │ │ └── 题目描述.txt │ ├── 2015 │ ├── National _C_C++_A │ │ ├── 1 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目.txt │ │ └── 2015-决赛-C大学-A组.doc │ ├── National _C_C++_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 2015-决赛-C大学-B组.doc │ ├── National _C_C++_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ └── 2015-决赛-C大学-C组.doc │ ├── National _Java_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目.txt │ │ └── 2015-决赛-Java大学-A组.doc │ ├── National _Java_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目.txt │ │ └── 2015-决赛-Java大学-B组.doc │ ├── National _Java_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ └── 2015-决赛-Java大学-C组.doc │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ ├── solve.py │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── code.py │ │ │ └── solve.py │ │ ├── 7 │ │ │ └── README.md │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2015-省赛-C语言大学A组.doc │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2015-省赛-C语言大学B组.doc │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ ├── solve.py │ │ │ ├── 图1.jpg │ │ │ ├── 图2.jpg │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ └── 2015-省赛-C语言大学C组.doc │ ├── Province_Java_A │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2015-省赛-Java语言大学A组.doc │ ├── Province_Java_B │ │ ├── 1 │ │ │ └── 图1.jpg │ │ ├── 3 │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2015-省赛-Java语言大学B组.doc │ └── Province_Java_C │ │ ├── 1 │ │ └── 题目.txt │ │ ├── 2 │ │ └── 题目.txt │ │ ├── 3 │ │ ├── 图1.jpg │ │ └── 题目.txt │ │ ├── 4 │ │ └── 题目.txt │ │ ├── 5 │ │ ├── 图1.jpg │ │ └── 题目.txt │ │ ├── 6 │ │ └── 题目.txt │ │ ├── 7 │ │ └── 题目.txt │ │ ├── 8 │ │ └── 题目.txt │ │ ├── 9 │ │ ├── 图1.jpg │ │ ├── 图2.jpg │ │ └── 题目.txt │ │ ├── 10 │ │ └── 题目.txt │ │ └── 2015-省赛-Java语言大学C组.doc │ ├── 2016 │ ├── National _C_C++_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ └── 6 │ │ │ └── 题目.txt │ ├── National _C_C++_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目.txt │ ├── National _C_C++_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 6 │ │ │ └── 题目.txt │ ├── National _Java_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目.txt │ ├── National _Java_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ └── 6 │ │ │ └── 题目.txt │ ├── National _Java_C │ │ ├── 2 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 6 │ │ │ └── 题目.txt │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── README.md │ │ │ ├── python.py │ │ │ ├── 图1.jpg │ │ │ ├── 图2.jpg │ │ │ └── 图3.jpg │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ ├── 2016-省赛-C语言大学A组.doc │ │ └── H │ │ │ ├── README.md │ │ │ └── python.py │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ ├── 图2.jpg │ │ │ ├── 图3.jpg │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2016-省赛-C语言大学B组.doc │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2016-省赛-C语言大学C组.doc │ ├── Province_Java_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ ├── 图2.jpg │ │ │ ├── 图3.jpg │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2016-省赛-Java语言大学A组.doc │ ├── Province_Java_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ ├── 图2.jpg │ │ │ ├── 图3.jpg │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2016-省赛-Java语言大学B组.doc │ └── Province_Java_C │ │ ├── 1 │ │ └── 题目.txt │ │ ├── 2 │ │ └── 题目.txt │ │ ├── 3 │ │ └── 题目.txt │ │ ├── 4 │ │ └── 题目.txt │ │ ├── 5 │ │ └── 题目.txt │ │ ├── 6 │ │ ├── Thumbs.db │ │ ├── 图1.jpg │ │ └── 题目.txt │ │ ├── 7 │ │ └── 题目.txt │ │ ├── 8 │ │ └── 题目.txt │ │ ├── 9 │ │ └── 题目.txt │ │ ├── 10 │ │ └── 题目.txt │ │ └── 2016-省赛-Java语言大学C组.doc │ ├── 2017 │ ├── National _C_C++_A │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── count.xlsx │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 题目.doc │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 题目.doc │ │ │ └── 题目.txt │ │ └── 第八届-决赛-C大学-A组.doc │ ├── National _C_C++_B │ │ ├── 1 │ │ │ ├── code.cpp │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── p1.png │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 题目.doc │ │ │ └── 题目.txt │ │ ├── H │ │ │ ├── README.md │ │ │ └── python.py │ │ └── 第八届-决赛-C大学-B组.doc │ ├── National _C_C++_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ └── 第八届-决赛-C大学-C组.doc │ ├── National _Java_A │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 题目.doc │ │ │ └── 题目.txt │ │ └── 第八届-决赛-Java大学-A组.doc │ ├── National _Java_B │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 题目.doc │ │ │ └── 题目.txt │ │ └── 第八届-决赛-Java大学-B组.doc │ ├── National _Java_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ └── 第八届-决赛-Java大学-C组.doc │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ ├── image │ │ │ │ └── p1.png │ │ │ ├── maze.txt │ │ │ └── python.py │ │ ├── 2 │ │ │ ├── p1.png │ │ │ ├── solve.cpp │ │ │ └── solve.py │ │ ├── 4 │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ └── p3.png │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ └── python.py │ │ ├── 9 │ │ │ ├── 9..cpp │ │ │ ├── 9..exe │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ ├── 10..cpp │ │ │ ├── 10..exe │ │ │ └── 题目.txt │ │ └── H │ │ │ ├── 8..cpp │ │ │ ├── 8..exe │ │ │ └── 题目.txt │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ ├── p3.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2017-省赛-C语言大学B组.doc │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── A.txt │ │ │ ├── B.txt │ │ │ ├── C.txt │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ └── 2017-省赛-C语言大学C组.doc │ ├── Province_Java_A │ │ ├── 1 │ │ │ ├── code.py │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ ├── p3.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2017-省赛-Java语言大学A组.doc │ ├── Province_Java_B │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── p1.png │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── p1.png │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2017-省赛-Java语言大学B组.doc │ └── Province_Java_C │ │ ├── 1 │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 2 │ │ ├── A.txt │ │ ├── B.txt │ │ ├── C.txt │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 3 │ │ ├── p1.png │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 4 │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 5 │ │ └── 题目.txt │ │ ├── 6 │ │ └── 题目.txt │ │ ├── 7 │ │ └── 题目.txt │ │ ├── 8 │ │ └── 题目.txt │ │ ├── 9 │ │ └── 题目.txt │ │ ├── 10 │ │ └── 题目.txt │ │ └── 2017-省赛-Java语言大学C组.doc │ ├── 2021 │ ├── Province_C_C++_A │ │ ├── D │ │ │ └── python.py │ │ ├── E │ │ │ └── python.py │ │ └── I │ │ │ └── python.py │ ├── Province_C_C++_B │ │ └── I │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ ├── images │ │ │ └── 20220106182946.png │ │ │ └── python.py │ └── Province_C_C++_C │ │ └── D │ │ └── python.py │ ├── 2022 │ └── Province_Python_B │ │ ├── A │ │ └── python.py │ │ ├── B │ │ └── python.py │ │ ├── C │ │ └── python.py │ │ ├── D │ │ └── python.py │ │ ├── E │ │ └── python.py │ │ ├── F │ │ └── python.py │ │ ├── G │ │ └── python.py │ │ ├── H │ │ └── python.py │ │ ├── I │ │ └── python.py │ │ ├── J │ │ └── python.py │ │ ├── LQ2022SP_PB │ │ └── 第十三届蓝桥杯大赛软件赛省赛_PB.pdf │ │ ├── README.md │ │ └── file_1649387597723.rar │ ├── 2023 │ └── Province_Python_Graduate │ │ ├── A │ │ ├── python.py │ │ └── records.txt │ │ └── python.py │ ├── 2014- │ ├── National _C_C++_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── p1.PNG │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ └── 6 │ │ │ ├── p1.PNG │ │ │ └── 题目.txt │ ├── National _C_C++_B │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ ├── p1.PNG │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── README.md │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ └── 6 │ │ │ ├── p1.PNG │ │ │ └── 题目.txt │ ├── National _C_C++_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ └── 6 │ │ │ └── 题目.txt │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103224.cpp │ │ │ ├── 19103325.c │ │ │ ├── 19103328.c │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 19103224.cpp │ │ │ ├── 19103328.c │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 18023309.cpp │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 1.PNG │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ ├── 1.PNG │ │ │ └── 题目.txt │ │ └── 10 │ │ │ └── 题目.txt │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ ├── 18023309 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103224.cpp │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 18023309.cpp │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 18023309.cpp │ │ │ ├── 18023309.exe │ │ │ ├── 19103224.cpp │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 1.PNG │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── 1.png │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ ├── code.py │ │ │ ├── input1.txt │ │ │ ├── output1.txt │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ └── 10 │ │ │ └── 题目.txt │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2014-预-C高职.doc │ ├── Province_Java_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ ├── code.py │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ └── 2015-校内选拔-Java大学A组.doc │ ├── Province_Java_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ └── 2015-校内选拔-Java大学B组.doc │ ├── Province_Java_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ └── 2015-校内选拔-Java大学C组.doc │ ├── School_C_C++_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── solve.py │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 7 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ ├── School_C_C++_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ └── 2015-校内选拔-C大学B组.doc │ └── School_C_C++_C │ │ ├── 1 │ │ ├── 图1.png │ │ └── 题目.txt │ │ ├── 2 │ │ └── 题目.txt │ │ ├── 3 │ │ ├── 图1.png │ │ └── 题目.txt │ │ ├── 4 │ │ └── 题目.txt │ │ ├── 5 │ │ └── 题目.txt │ │ ├── 6 │ │ └── 题目.txt │ │ ├── 7 │ │ ├── 图1.png │ │ └── 题目.txt │ │ └── 2015-校内选拔-C大学C组.doc │ ├── 2018- │ ├── National _C_C++_B │ │ ├── 1 │ │ │ └── code.py │ │ └── 2 │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ └── python.py │ ├── National _Java_A │ │ ├── 1 │ │ │ └── code.py │ │ └── 2 │ │ │ └── code.py │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 7 │ │ │ ├── README.md │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ ├── README.md │ │ │ ├── p1.png │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ └── 2018-省赛-C语言大学A组.doc │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── README.md │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── 19_95e6f22816-p1.png │ │ │ ├── README.md │ │ │ ├── p1.png │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ ├── README.md │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ ├── 2018-省赛-C语言大学B组.doc │ │ └── B │ │ │ └── README.md │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2018-省赛-C语言大学C组.doc │ ├── Province_Java_A │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ └── 10 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ ├── Province_Java_B │ │ └── Java语言B组 │ │ │ ├── 1 │ │ │ └── 题目.txt │ │ │ ├── 2 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ │ ├── 3 │ │ │ └── 题目.txt │ │ │ ├── 4 │ │ │ └── 题目.txt │ │ │ ├── 5 │ │ │ └── 题目.txt │ │ │ ├── 6 │ │ │ └── 题目.txt │ │ │ ├── 7 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ │ ├── 8 │ │ │ └── 题目.txt │ │ │ ├── 9 │ │ │ └── 题目.txt │ │ │ ├── 10 │ │ │ └── 题目.txt │ │ │ └── 2018-省赛-Java语言大学B组.doc │ └── Province_Java_C │ │ ├── 1 │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 2 │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 3 │ │ ├── input.txt │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 4 │ │ └── 题目.txt │ │ ├── 5 │ │ └── 题目.txt │ │ ├── 6 │ │ ├── p1.png │ │ └── 题目.txt │ │ ├── 7 │ │ └── 题目.txt │ │ ├── 8 │ │ ├── p1.png │ │ └── 题目.txt │ │ ├── 9 │ │ ├── p1.png │ │ └── 题目.txt │ │ └── 10 │ │ └── 题目.txt │ ├── 2019- │ ├── National_C_C++_A │ │ ├── A │ │ │ ├── code.py │ │ │ ├── inc.txt │ │ │ └── 题目.txt │ │ ├── B │ │ │ ├── code.py │ │ │ └── trip.txt │ │ ├── C │ │ │ └── python.py │ │ ├── D │ │ │ └── code.py │ │ ├── E │ │ │ └── python.py │ │ ├── F │ │ │ └── code.py │ │ └── problemCA.pdf │ ├── National_C_C++_B │ │ ├── 1 │ │ │ └── code.py │ │ ├── 2 │ │ │ └── code.py │ │ └── CB │ │ │ └── problemCB.pdf │ ├── National_C_C++_C │ │ ├── A │ │ │ └── code.py │ │ ├── B │ │ │ ├── code.py │ │ │ └── inc.txt │ │ ├── C │ │ │ └── code.py │ │ ├── D │ │ │ ├── code.py │ │ │ └── trip.txt │ │ ├── E │ │ │ └── 题目.txt │ │ ├── F │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── G │ │ │ └── 题目.txt │ │ ├── H │ │ │ └── 题目.txt │ │ ├── I │ │ │ └── 题目.txt │ │ ├── J │ │ │ └── 题目.txt │ │ └── problemCC.pdf │ ├── National_C_C++_G │ │ ├── C │ │ │ ├── code.py │ │ │ └── trip.txt │ │ ├── inc.txt │ │ └── problemCG.pdf │ ├── National_Java_A │ │ ├── E │ │ │ └── code.py │ │ ├── inc.txt │ │ ├── problemJA.pdf │ │ └── trip.txt │ ├── National_Java_B │ │ ├── inc.txt │ │ ├── problemJB.pdf │ │ └── trip.txt │ ├── National_Java_C │ │ ├── A │ │ │ └── code.py │ │ ├── B │ │ │ ├── code.py │ │ │ └── inc.txt │ │ ├── C │ │ │ └── code.py │ │ ├── H │ │ │ └── code.py │ │ └── problemJC.pdf │ ├── National_Java_G │ │ ├── inc.txt │ │ ├── problemJG.pdf │ │ └── trip.txt │ ├── Province_C_C++_A │ │ ├── A │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ └── solve.py │ │ ├── B │ │ │ └── solve.py │ │ ├── C │ │ │ └── solve.py │ │ ├── D │ │ │ ├── README.md │ │ │ ├── maze.txt │ │ │ ├── python.py │ │ │ └── solve.py │ │ ├── E │ │ │ └── solve.py │ │ ├── F │ │ │ └── solve.py │ │ └── G │ │ │ └── solve.py │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ ├── p1.png │ │ │ ├── python.py │ │ │ ├── team.txt │ │ │ └── 试题A-组队.md │ │ ├── 2 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 3 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 4 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 5 │ │ │ ├── code.py │ │ │ ├── maze.txt │ │ │ └── 试题E-迷宫.md │ │ ├── 6 │ │ │ ├── code.py │ │ │ └── 试题F-特别数的和.md │ │ ├── 7 │ │ │ ├── code.py │ │ │ ├── p1.png │ │ │ └── 试题G-完全二叉树的权值.md │ │ ├── 8 │ │ │ ├── README.md │ │ │ └── code.py │ │ └── I │ │ │ ├── README.md │ │ │ ├── images │ │ │ └── img.png │ │ │ └── python.py │ ├── Province_C_C++_C │ │ ├── B │ │ │ ├── README.md │ │ │ ├── image │ │ │ │ └── img.png │ │ │ └── python.py │ │ ├── D │ │ │ ├── README.md │ │ │ └── python.py │ │ └── F │ │ │ ├── README.md │ │ │ └── python.py │ └── Province_Java_G │ │ ├── A │ │ └── python.py │ │ └── G │ │ ├── README.md │ │ ├── c++.cpp │ │ ├── c++.exe │ │ └── python.py │ ├── 2020- │ ├── 10月 │ │ ├── Province_C_C++_G │ │ │ └── F │ │ │ │ ├── README.md │ │ │ │ ├── c++.cpp │ │ │ │ ├── images │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ │ │ └── python.py │ │ ├── Province_Java_B │ │ │ ├── A │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ ├── B │ │ │ │ ├── 2020.txt │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ ├── C │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ ├── D │ │ │ │ ├── code.py │ │ │ │ ├── 图1.png │ │ │ │ └── 题目.txt │ │ │ ├── E │ │ │ │ └── code.py │ │ │ └── problemJB.pdf │ │ └── Province_Python │ │ │ ├── A │ │ │ ├── c++.cpp │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ │ ├── B │ │ │ ├── 2020.txt │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ │ ├── C │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ │ ├── D │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ │ ├── E │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ └── python.py │ │ │ ├── F │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ │ ├── G │ │ │ ├── README.md │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ │ └── H │ │ │ └── solve.py │ ├── 7月 │ │ ├── Province_C_C++_A │ │ │ ├── A │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ ├── B │ │ │ │ ├── code.py │ │ │ │ ├── graph.png │ │ │ │ └── 题目.txt │ │ │ ├── C │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ ├── D │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ └── E │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ ├── Province_C_C++_B │ │ │ ├── 1 │ │ │ │ └── code.py │ │ │ ├── 2 │ │ │ │ └── code.py │ │ │ ├── 3 │ │ │ │ └── code.py │ │ │ ├── 4 │ │ │ │ ├── code.py │ │ │ │ └── prog.txt │ │ │ ├── 5 │ │ │ │ └── code.py │ │ │ ├── 6 │ │ │ │ └── code.py │ │ │ ├── 7 │ │ │ │ └── code.py │ │ │ └── 8 │ │ │ │ └── code.py │ │ └── Province_C_C++_C │ │ │ ├── 1 │ │ │ └── code.py │ │ │ ├── 2 │ │ │ └── code.py │ │ │ ├── 3 │ │ │ └── code.py │ │ │ ├── 4 │ │ │ └── code.py │ │ │ ├── 5 │ │ │ ├── code.py │ │ │ └── prog.txt │ │ │ └── 6 │ │ │ └── code.py │ ├── National_C_C++_A │ │ └── G │ │ │ └── python.py │ ├── National_C_C++_B │ │ ├── A │ │ │ └── python.py │ │ └── B │ │ │ └── python.py │ ├── National_Java_B │ │ ├── A │ │ │ └── code.py │ │ ├── B │ │ │ └── code.py │ │ ├── C │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── inc.txt │ │ └── problemJB.pdf │ ├── National_Java_C │ │ └── G │ │ │ ├── README.md │ │ │ └── python.py │ ├── National_Java_G │ │ └── F │ │ │ ├── README.md │ │ │ └── python.py │ ├── National_Python │ │ ├── C │ │ │ └── python.py │ │ ├── G │ │ │ └── python.py │ │ ├── H │ │ │ └── python.py │ │ ├── I │ │ │ └── python.py │ │ └── J │ │ │ └── python.py │ ├── Province_C_C++_A │ │ ├── A │ │ │ └── solve.py │ │ ├── B │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ └── python.py │ │ ├── C │ │ │ └── solve.py │ │ ├── D │ │ │ └── solve.py │ │ ├── E │ │ │ └── solve.py │ │ ├── F │ │ │ └── solve.py │ │ ├── G │ │ │ └── solve.py │ │ ├── H │ │ │ ├── dp.png │ │ │ └── solve.py │ │ ├── I │ │ │ └── solve.py │ │ └── J │ │ │ ├── README.md │ │ │ └── solve.py │ ├── Province_C_C++_C │ │ └── A │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ └── python.py │ ├── Simulation_1 │ │ ├── 1.15.125GB │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 10.晚会节目单 │ │ │ └── 10.晚会节目单 │ │ │ │ └── 晚会节目单.txt │ │ ├── 2.约数个数 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 3.叶结点数 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 4.数字9 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 5.数位递增的数 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 6.递增三元组 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 7.音节判断 │ │ │ └── 7.音节判断 │ │ │ │ └── 音节判断.txt │ │ ├── 8.长草 │ │ │ └── 8.长草 │ │ │ │ └── 长草.txt │ │ └── 9.序列计数 │ │ │ ├── code.py │ │ │ └── 题目.txt │ └── Simulation_2 │ │ ├── Python组 │ │ ├── 1.12.5MB │ │ │ └── code.py │ │ ├── 10.植树 │ │ │ └── code.py │ │ ├── 2.最多边数 │ │ │ └── code.py │ │ ├── 3.单词重排 │ │ │ └── code.py │ │ ├── 4.括号序列 │ │ │ └── code.py │ │ ├── 5.反倍数 │ │ │ └── code.py │ │ ├── 6.凯撒加密 │ │ │ └── code.py │ │ ├── 7.螺旋 │ │ │ └── code.py │ │ ├── 8.摆动序列 │ │ │ └── code.py │ │ └── 9.通电 │ │ │ └── code.py │ │ ├── 本科组 │ │ ├── 1.12.5MB │ │ │ ├── code.py │ │ │ └── desc │ │ ├── 10.植树 │ │ │ └── desc │ │ ├── 2.最多边数 │ │ │ ├── code.py │ │ │ └── desc │ │ ├── 3.单词重排 │ │ │ └── desc │ │ ├── 4.括号序列 │ │ │ └── 4.括号序列 │ │ │ │ └── desc │ │ ├── 5.反倍数 │ │ │ └── desc │ │ ├── 6.凯撒加密 │ │ │ └── desc │ │ ├── 7.螺旋 │ │ │ └── desc │ │ ├── 8.摆动序列 │ │ │ └── desc │ │ └── 9.通电 │ │ │ └── desc │ │ └── 高职组 │ │ ├── 1.十六进制1949 │ │ └── desc │ │ ├── 10.积木 │ │ └── desc │ │ ├── 2.互质个数 │ │ └── desc │ │ ├── 3.最大公约数 │ │ └── desc │ │ ├── 4.最多结点数 │ │ └── desc │ │ ├── 5.洁净数 │ │ └── desc │ │ ├── 6.最大距离 │ │ └── desc │ │ ├── 7.最长递增 │ │ └── desc │ │ ├── 8.字符计数 │ │ └── desc │ │ └── 9.练功 │ │ └── desc │ └── 真题分析.xlsx ├── Codeforces └── Contests │ ├── Codeforces Round #616 │ └── (Div. 2) │ │ └── A.Even But Not Even │ │ ├── README.md │ │ └── code.py │ └── Educational Codeforces Round 81 │ └── Rated for Div. 2 │ ├── A. Display The Number │ ├── A. Display The Number.py │ └── README.md │ └── B. Infinite Prefixes │ ├── B. Infinite Prefixes.py │ └── README.md ├── Gym ├── 100049A │ ├── 100049A.Chemistry.py │ └── A - Chemistry.pdf └── 100049B │ ├── 100049B.Bound Found.py │ └── B - Bound Found.pdf ├── Interview ├── ByteDance │ ├── 2018 │ │ ├── 1-最外层的点 │ │ │ ├── README.md │ │ │ ├── images │ │ │ │ └── 300557_1502940399706_1329AFEA3FC7961DEA219781A71B3B5B.jpg │ │ │ └── python.py │ │ └── 2-最大值区间 │ │ │ ├── README.md │ │ │ └── python.py │ └── Exercise │ │ └── ZJ1附加题.py └── JD │ ├── JD1-年终奖 │ └── solve.py │ ├── JD15-括号匹配方案 │ └── solve.py │ ├── JD2-抛小球 │ └── solve.py │ ├── JD3-小东分苹果 │ └── solve.py │ ├── JD4-上台阶 │ └── solve.py │ ├── JD5-小球的距离 │ └── solve.py │ ├── JD6-保卫方案 │ └── solve.py │ └── JD7-集合 │ └── solve.py ├── Learn └── DataStructure │ └── UnionFindSet │ └── __pycache__ │ └── template.cpython-37.pyc ├── LeetCode ├── LCP │ ├── 01. Guess Numbers │ │ └── code.py │ ├── 06. 拿硬币 │ │ └── solve.py │ ├── 07. 传递信息 │ │ └── python.py │ └── 13. 寻宝 │ │ └── code.py ├── Multithreading │ ├── 1114. Print in Order │ │ ├── README.md │ │ └── python.py │ ├── 1115. Print FooBar Alternately │ │ └── solve.py │ └── 1117. Building H2O │ │ └── python.py ├── Problems │ ├── 1. Two Sum │ │ ├── code.py │ │ └── solve.cpp │ ├── 100. Same Tree │ │ └── code.py │ ├── 1004. Max Consecutive Ones III │ │ └── code.py │ ├── 101. Symmetric Tree │ │ └── 101. Symmetric Tree.py │ ├── 1014. Best Sightseeing Pair │ │ └── 1014. Best Sightseeing Pair.py │ ├── 1018. Binary Prefix Divisible By 5 │ │ ├── code.cpp │ │ └── code.exe │ ├── 104. Maximum Depth of Binary Tree │ │ └── code.py │ ├── 1049. Last Stone Weight II │ │ └── solve.py │ ├── 105. Construct Binary Tree from Preorder and Inorder Traversal │ │ └── 105. Construct Binary Tree from Preorder and Inorder Traversal.py │ ├── 1052. Grumpy Bookstore Owner │ │ └── code.py │ ├── 109. Convert Sorted List to Binary Search Tree │ │ └── code.py │ ├── 110. Balanced Binary Tree │ │ └── code.py │ ├── 1108. Defanging an IP Address │ │ └── solve.py │ ├── 112. Path Sum │ │ └── 112. Path Sum.py │ ├── 1128. Number of Equivalent Domino Pairs │ │ ├── code.cpp │ │ └── code.py │ ├── 114. Flatten Binary Tree to Linked List │ │ └── code.py │ ├── 1143. Longest Common Subsequence │ │ └── solve.py │ ├── 1178. Number of Valid Words for Each Puzzle │ │ └── solve.py │ ├── 118. Pascal's Triangle │ │ ├── README.md │ │ └── python.py │ ├── 1190. Reverse Substrings Between Each Pair of Parentheses │ │ └── solve.py │ ├── 120. Triangle │ │ └── 120. Triangle.py │ ├── 1203. Sort Items by Groups Respecting Dependencies │ │ └── code.cpp │ ├── 1208. Get Equal Substrings Within Budget │ │ └── code.py │ ├── 123. Best Time to Buy and Sell Stock III │ │ └── code.cpp │ ├── 1232. Check If It Is a Straight Line │ │ ├── code.cpp │ │ └── code.py │ ├── 124. Binary Tree Maximum Path Sum │ │ └── 124. Binary Tree Maximum Path Sum.py │ ├── 125. Valid Palindrome │ │ └── 125. Valid Palindrome.py │ ├── 126. Word Ladder II │ │ └── 126. Word Ladder II.py │ ├── 1267. Count Servers that Communicate │ │ ├── README.md │ │ └── python.py │ ├── 127. Word Ladder │ │ └── code.py │ ├── 128. Longest Consecutive Sequence │ │ └── 128. Longest Consecutive Sequence.py │ ├── 1281. Subtract the Product and Sum of Digits of an Integer │ │ └── solve.py │ ├── 1290. Convert Binary Number in a Linked List to Integer │ │ └── solve.cpp │ ├── 13. Roman to Integer │ │ └── code.py │ ├── 130. Surrounded Regions │ │ └── code.py │ ├── 1319. Number of Operations to Make Network Connected │ │ ├── code.cpp │ │ └── code.py │ ├── 133. Clone Graph │ │ └── code.py │ ├── 134. Gas Station │ │ └── code.py │ ├── 135. Candy │ │ └── code.py │ ├── 1356. Sort Integers by The Number of 1 Bits │ │ └── code.py │ ├── 1365. How Many Numbers Are Smaller Than the Current Number │ │ └── code.py │ ├── 1371. Find the Longest Substring Containing Vowels in Even Counts │ │ └── 1371. Find the Longest Substring Containing Vowels in Even Counts.py │ ├── 139. Word Break │ │ └── 139. Word Break.py │ ├── 14. Longest Common Prefix │ │ └── 14. Longest Common Prefix.py │ ├── 141. Linked List Cycle │ │ └── code.py │ ├── 1418. Display Table of Food Orders in a Restaurant │ │ └── solve.py │ ├── 142. Linked List Cycle II │ │ └── code.py │ ├── 1423. Maximum Points You Can Obtain from Cards │ │ └── code.py │ ├── 143.Reorder List │ │ └── code.py │ ├── 1431. Kids With the Greatest Number of Candies │ │ └── 1431. Kids With the Greatest Number of Candies.py │ ├── 1438. Longest Continuous Subarray With Absolute Diff Less Than or Equal to Limit │ │ └── code.py │ ├── 144. Binary Tree Preorder Traversal │ │ └── code.py │ ├── 1442. Count Triplets That Can Form Two Arrays of Equal XOR │ │ └── solve.py │ ├── 146. LRU Cache │ │ └── 146. LRU Cache.py │ ├── 1470. Shuffle the Array │ │ └── code.py │ ├── 148. Sort List │ │ ├── README.md │ │ ├── images │ │ │ └── 格局打开.jpg │ │ └── python.py │ ├── 1480. Running Sum of 1d Array │ │ └── code.py │ ├── 1489. Find Critical and Pseudo-Critical Edges in Minimum Spanning Tree │ │ ├── code.cpp │ │ └── code.py │ ├── 15. 3Sum │ │ └── 15. 3Sum.py │ ├── 152. Maximum Product Subarray │ │ └── 152. Maximum Product Subarray.py │ ├── 1566. Detect Pattern of Length M Repeated K or More Times │ │ └── python.py │ ├── 1579. Remove Max Number of Edges to Keep Graph Fully Traversable │ │ └── code.py │ ├── 16. 3Sum Closest │ │ └── 16. 3Sum Closest.py │ ├── 160. Intersection of Two Linked Lists │ │ └── solve.cpp │ ├── 1600. Throne Inheritance │ │ └── solve.py │ ├── 1631. Path With Minimum Effort │ │ └── code.py │ ├── 1640. Check Array Formation Through Concatenation │ │ └── code.py │ ├── 167. Two Sum II - Input array is sorted │ │ └── code.py │ ├── 168. Excel Sheet Column Title │ │ └── solve.py │ ├── 169. Majority Element │ │ ├── c++.cpp │ │ └── python.py │ ├── 173. Binary Search Tree Iterator │ │ └── solve.py │ ├── 1734. Decode XORed Permutation │ │ └── solve.py │ ├── 174. Dungeon Game │ │ └── 174. Dungeon Game.py │ ├── 1773. Count Items Matching a Rule │ │ └── solve.py │ ├── 179. Largest Number │ │ └── solve.py │ ├── 18. 4Sum │ │ └── code.py │ ├── 1828. Queries on Number of Points Inside a Circle │ │ └── solve.py │ ├── 1846. Maximum Element After Decreasing and Rearranging │ │ └── solve.py │ ├── 1854. Maximum Population Year │ │ └── solve.py │ ├── 1863. Sum of All Subset XOR Totals │ │ └── solve.py │ ├── 1869. Longer Contiguous Segments of Ones than Zeros │ │ └── solve.py │ ├── 189. Rotate Array │ │ └── code.cpp │ ├── 19. Remove Nth Node From End of List │ │ ├── code.py │ │ └── solve.cpp │ ├── 190. Reverse Bits │ │ └── solve.py │ ├── 1925. Count Square Sum Triples │ │ └── python.py │ ├── 198. House Robber │ │ └── 198. House Robber.py │ ├── 2. Add Two Numbers │ │ └── code.py │ ├── 20. Valid Parentheses │ │ └── code.py │ ├── 2000. Reverse Prefix of Word │ │ └── python.py │ ├── 202. Happy Number │ │ └── python.py │ ├── 203. Remove Linked List Elements │ │ └── solve.cpp │ ├── 204. Count Primes │ │ └── python.py │ ├── 205. Isomorphic Strings │ │ └── code.cpp │ ├── 206.Reverse Linked List │ │ ├── 206.Reverse Linked List.py │ │ └── solve.cpp │ ├── 207. Course Schedule │ │ └── code.py │ ├── 208. Implement Trie (Prefix Tree) │ │ └── solve.py │ ├── 209. Minimum Size Subarray Sum │ │ └── 209. Minimum Size Subarray Sum.py │ ├── 21. Merge Two Sorted Lists │ │ ├── c++.cpp │ │ └── code.py │ ├── 210. Course Schedule II │ │ └── 210. Course Schedule II.py │ ├── 213. House Robber II │ │ └── solve.py │ ├── 215. Kth Largest Element in an Array │ │ └── 215. Kth Largest Element in an Array.py │ ├── 217. Contains Duplicate │ │ ├── c++.cpp │ │ └── python.py │ ├── 225. Implement Stack using Queues │ │ ├── README.md │ │ └── python.py │ ├── 227. Basic Calculator II │ │ └── solve.py │ ├── 231. Power of Two │ │ └── solve.py │ ├── 234. Palindrome Linked List │ │ └── code.py │ ├── 237. Delete Node in a Linked List │ │ └── solve.py │ ├── 238. Product of Array Except Self │ │ └── 238. Product of Array Except Self.py │ ├── 240. Search a 2D Matrix II │ │ ├── README.md │ │ └── python.py │ ├── 242. Valid Anagram │ │ ├── c++.cpp │ │ └── python.py │ ├── 264. Ugly Number II │ │ ├── solve.cpp │ │ └── solve.py │ ├── 268. Missing Number │ │ ├── README.md │ │ ├── c++.cpp │ │ └── python.py │ ├── 27. Remove Element │ │ └── solve.py │ ├── 274. H-Index │ │ ├── README.md │ │ └── python.py │ ├── 28. Implement strStr() │ │ └── solve.py │ ├── 28. 实现 strStr() │ │ └── solve.py │ ├── 287. Find the Duplicate Number │ │ └── 287. Find the Duplicate Number.py │ ├── 290. Word Pattern │ │ └── code.py │ ├── 297. Serialize and Deserialize Binary Tree │ │ └── 297. Serialize and Deserialize Binary Tree.py │ ├── 3. Longest Substring Without Repeating Characters │ │ └── solve.py │ ├── 300. Longest Increasing Subsequence │ │ └── solve.py │ ├── 303. Range Sum Query - Immutable │ │ └── solve.py │ ├── 309. Best Time to Buy and Sell Stock with Cooldown │ │ └── 309. Best Time to Buy and Sell Stock with Cooldown.py │ ├── 31. Next Permutation │ │ └── code.py │ ├── 312. Burst Balloons │ │ └── 312. Burst Balloons.py │ ├── 316. Remove Duplicate Letters │ │ └── code.py │ ├── 32. Longest Valid Parentheses │ │ └── 32. Longest Valid Parentheses.py │ ├── 327. Count of Range Sum │ │ └── code.py │ ├── 329. Longest Increasing Path in a Matrix │ │ └── code.py │ ├── 33. Search in Rotated Sorted Array │ │ └── python.py │ ├── 330. Patching Array │ │ └── code.cpp │ ├── 336. Palindrome Pairs │ │ └── code.py │ ├── 337. House Robber III │ │ └── code.py │ ├── 342. Power of Four │ │ └── solve.py │ ├── 343. Integer Break │ │ └── code.py │ ├── 344. Reverse String │ │ └── code.py │ ├── 347. Top K Frequent Elements │ │ └── solve.py │ ├── 349. Intersection of Two Arrays │ │ └── code.py │ ├── 35. Search Insert Position │ │ ├── README.md │ │ └── python.py │ ├── 350. Intersection of Two Arrays II │ │ └── 350. Intersection of Two Arrays II.py │ ├── 378. Kth Smallest Element in a Sorted Matrix │ │ └── 378. Kth Smallest Element in a Sorted Matrix.py │ ├── 38. 外观数列 │ │ └── solve.py │ ├── 386. Lexicographical Numbers │ │ ├── README.md │ │ └── python.py │ ├── 389. Find the Difference │ │ ├── README.md │ │ └── python.py │ ├── 392. Is Subsequence │ │ └── code.py │ ├── 394. Decode String │ │ └── 394. Decode String.py │ ├── 395. Longest Substring with At Least K Repeating Characters │ │ └── solve.py │ ├── 4. Median of Two Sorted Arrays │ │ └── 4. Median of Two Sorted Arrays.py │ ├── 401. Binary Watch │ │ └── solve.py │ ├── 41. First Missing Positive │ │ └── 41. First Missing Positive.py │ ├── 410. Split Array Largest Sum │ │ └── code.py │ ├── 414. Third Maximum Number │ │ ├── README.md │ │ ├── c++.cpp │ │ └── python.py │ ├── 415. Add Strings │ │ └── code.py │ ├── 421. Maximum XOR of Two Numbers in an Array │ │ └── solve.py │ ├── 424. Longest Repeating Character Replacement │ │ └── code.py │ ├── 43. Multiply Strings │ │ └── code.py │ ├── 44. Wildcard Matching │ │ └── 44. Wildcard Matching.py │ ├── 445. Add Two Numbers II │ │ └── solve.py │ ├── 448. Find All Numbers Disappeared in an Array │ │ └── code.py │ ├── 451. Sort Characters By Frequency │ │ ├── README.md │ │ └── python.py │ ├── 455. Assign Cookies │ │ └── code.py │ ├── 463. Island Perimeter │ │ └── code.py │ ├── 48. Rotate Image │ │ └── code.py │ ├── 480. Sliding Window Median │ │ └── code.py │ ├── 485. Max Consecutive Ones │ │ └── code.py │ ├── 49. Group Anagrams │ │ └── code.py │ ├── 494. Target Sum │ │ └── solve.py │ ├── 496. Next Greater Element I │ │ └── code.cpp │ ├── 5. Longest Palindromic Substring │ │ └── 5. Longest Palindromic Substring.py │ ├── 503. Next Greater Element II │ │ └── code.cpp │ ├── 507. Perfect Number │ │ └── python.py │ ├── 509. Fibonacci Number │ │ └── code.cpp │ ├── 523. Continuous Subarray Sum │ │ └── solve.py │ ├── 525. Contiguous Array │ │ └── solve.py │ ├── 53. Maximum Subarray │ │ └── solve.py │ ├── 530. 二叉搜索树的最小绝对差 │ │ └── solve.cpp │ ├── 54. Spiral Matrix │ │ └── solve.py │ ├── 543. 二叉树的直径 │ │ └── solve.cpp │ ├── 546. Remove Boxes │ │ └── code.py │ ├── 547. Number of Provinces │ │ └── code.cpp │ ├── 561. Array Partition I │ │ └── code.py │ ├── 566. Reshape the Matrix │ │ └── code.py │ ├── 567. Permutation in String │ │ └── code.py │ ├── 57 - II. 和为s的连续正数序列 │ │ └── python.py │ ├── 58. Length of Last Word │ │ └── code.py │ ├── 59. Spiral Matrix II │ │ └── solve.py │ ├── 62. Unique Paths │ │ └── code.py │ ├── 621. Task Scheduler │ │ └── code.py │ ├── 628. Maximum Product of Three Numbers │ │ ├── code.cpp │ │ └── code.py │ ├── 63. Unique Paths II │ │ └── 63. Unique Paths II.py │ ├── 632. Smallest Range Covering Elements from K Lists │ │ └── code.py │ ├── 64. Minimum Path Sum │ │ └── code.py │ ├── 643. Maximum Average Subarray I │ │ └── code.py │ ├── 66. Plus One │ │ └── solve.py │ ├── 67. Add Binary │ │ └── 67. Add Binary.py │ ├── 674. Longest Continuous Increasing Subsequence │ │ └── code.py │ ├── 680. Valid Palindrome II │ │ ├── 680. Valid Palindrome II.py │ │ └── README.md │ ├── 684. Redundant Connection │ │ └── code.cpp │ ├── 692. Top K Frequent Words │ │ └── solve.py │ ├── 696. Count Binary Substrings │ │ └── code.py │ ├── 697. Degree of an Array │ │ └── code.py │ ├── 7. Reverse Integer │ │ ├── code.py │ │ └── solve.cpp │ ├── 70. Climbing Stairs │ │ └── 70. Climbing Stairs.py │ ├── 700. 二叉搜索树中的搜索 │ │ └── solve.cpp │ ├── 703. Kth Largest Element in a Stream │ │ └── code.py │ ├── 704. Binary Search │ │ └── python.py │ ├── 705. Design HashSet │ │ └── solve.py │ ├── 706. Design HashMap │ │ └── solve.py │ ├── 718. Maximum Length of Repeated Subarray │ │ └── 718. Maximum Length of Repeated Subarray.py │ ├── 721. Accounts Merge │ │ └── code.cpp │ ├── 724. Find Pivot Index │ │ └── code.py │ ├── 726. Number of Atoms │ │ └── solve.py │ ├── 733. Flood Fill │ │ └── code.py │ ├── 738. Monotone Increasing Digits │ │ └── code.py │ ├── 739. Daily Temperatures │ │ ├── 739. Daily Temperatures.py │ │ └── code.cpp │ ├── 746. Min Cost Climbing Stairs │ │ └── code.py │ ├── 75. Sort Colors │ │ └── 75. Sort Colors.py │ ├── 752. Open the Lock │ │ └── solve.py │ ├── 76. Minimum Window Substring │ │ └── 76. Minimum Window Substring.py │ ├── 763. Partition Labels │ │ └── code.py │ ├── 766. Toeplitz Matrix │ │ └── solve.py │ ├── 778. Swim in Rising Water │ │ └── code.py │ ├── 785. Is Graph Bipartite │ │ └── 785. Is Graph Bipartite.py │ ├── 797. All Paths From Source to Target │ │ ├── README.md │ │ └── python.py │ ├── 8. String to Integer (atoi) │ │ └── solve.py │ ├── 80. Remove Duplicates from Sorted Array II │ │ └── solve.py │ ├── 81. Search in Rotated Sorted Array II │ │ └── solve.py │ ├── 811. Subdomain Visit Count │ │ ├── README.md │ │ └── python.py │ ├── 82. Remove Duplicates from Sorted List II │ │ └── solve.py │ ├── 83. Remove Duplicates from Sorted List │ │ └── solve.cpp │ ├── 832. Flipping an Image │ │ └── solve.py │ ├── 834. Sum of Distances in Tree │ │ └── code.py │ ├── 837. New 21 Game │ │ └── 837. New 21 Game.py │ ├── 839. Similar String Groups │ │ └── code.py │ ├── 84. Largest Rectangle in Histogram │ │ └── 84. Largest Rectangle in Histogram.py │ ├── 842. Split Array into Fibonacci Sequence │ │ └── code.py │ ├── 85. Maximal Rectangle │ │ └── code.cpp │ ├── 856. Score of Parentheses │ │ └── solve.py │ ├── 867. Transpose Matrix │ │ └── solve.py │ ├── 87. Scramble String │ │ └── solve.py │ ├── 872. Leaf-Similar Trees │ │ └── solve.py │ ├── 876. Middle of the Linked List │ │ └── solve.cpp │ ├── 879. Profitable Schemes │ │ └── solve.py │ ├── 88. Merge Sorted Array │ │ └── solve.py │ ├── 888. Fair Candy Swap │ │ └── code.py │ ├── 894. All Possible Full Binary Trees │ │ ├── README.md │ │ └── python.py │ ├── 896. Monotonic Array │ │ └── solve.py │ ├── 897. Increasing Order Search Tree │ │ ├── c++.cpp │ │ └── solve.py │ ├── 9. Palindrome Number │ │ └── solve.cpp │ ├── 92.Reverse Linked List II │ │ └── 92.Reverse Linked List II.py │ ├── 925. Long Pressed Name │ │ └── code.py │ ├── 93. Restore IP Addresses │ │ └── code.py │ ├── 941. Valid Mountain Array │ │ └── code.py │ ├── 947. Most Stones Removed with Same Row or Column │ │ └── code.cpp │ ├── 95. Unique Binary Search Trees II │ │ └── code.py │ ├── 959. Regions Cut By Slashes │ │ └── code.py │ ├── 96. Unique Binary Search Trees │ │ └── 96. Unique Binary Search Trees.py │ ├── 97. Interleaving String │ │ └── 97. Interleaving String.py │ ├── 974. Subarray Sums Divisible by K │ │ └── 974. Subarray Sums Divisible by K.py │ ├── 978. Longest Turbulent Subarray │ │ └── code.py │ ├── 98. Validate Binary Search Tree │ │ └── solve.py │ ├── 983. Minimum Cost For Tickets │ │ └── 983. Minimum Cost For Tickets.py │ ├── 989. Add to Array-Form of Integer │ │ ├── code.cpp │ │ ├── code.exe │ │ └── code.py │ ├── 99. Recover Binary Search Tree │ │ └── code.py │ ├── 990. Satisfiability of Equality Equations │ │ └── 990. Satisfiability of Equality Equations.py │ ├── 992. Subarrays with K Different Integers │ │ └── code.py │ ├── 993. Cousins in Binary Tree │ │ └── solve.py │ ├── 995. Minimum Number of K Consecutive Bit Flips │ │ └── python.py │ └── 997. Find the Town Judge │ │ └── python.py ├── SQL │ ├── 175. Combine Two Tables │ │ └── solve.sql │ ├── 176. Second Highest Salary │ │ └── solve.sql │ ├── 181. Employees Earning More Than Their Managers │ │ └── solve.sql │ ├── 182. Duplicate Emails │ │ └── solve.sql │ └── 627. Swap Salary │ │ └── solve.sql ├── Shell │ ├── 192. Word Frequency │ │ └── solve.sh │ ├── 193. Valid Phone Numbers │ │ └── solve.sh │ └── 195. Tenth Line │ │ └── solve.sh ├── WeeklyCompetition │ └── 243 │ │ ├── 5772. 检查某单词是否等于两单词之和 │ │ └── solve.py │ │ └── 5773. 插入后的最大值 │ │ └── solve.py ├── 剑指 Offer │ ├── 06. 从尾到头打印链表 │ │ └── solve.cpp │ ├── 11. 旋转数组的最小数字 │ │ └── code.py │ ├── 15. 二进制中1的个数 │ │ └── solve.py │ ├── 25. 合并两个排序的链表 │ │ └── solve.cpp │ ├── 28. 对称的二叉树 │ │ └── c++.cpp │ ├── 37. 序列化二叉树 │ │ └── solve.py │ ├── 38. 字符串的排列 │ │ └── solve.py │ ├── 42. 连续子数组的最大和 │ │ └── solve.py │ ├── 55 - II. 平衡二叉树 │ │ └── c++.cpp │ ├── 56. 二叉搜索树中两个节点之和 │ │ └── c++.cpp │ └── 85. 生成匹配的括号 │ │ ├── README.md │ │ └── python.py └── 面试题 │ ├── 面试题 02.01. 移除重复节点 │ └── 面试题 02.01. 移除重复节点.py │ ├── 面试题 02.02. 返回倒数第 k 个节点 │ └── solve.py │ ├── 面试题 02.03. 删除中间节点 │ └── solve.py │ ├── 面试题 02.06. Palindrome Linked List LCCI │ └── solve.cpp │ ├── 面试题 04.03. 特定深度节点链表 │ └── solve.py │ ├── 面试题 08.03. Magic Index LCCI │ └── code.py │ ├── 面试题 10.05. 稀疏数组搜索 │ └── python.py │ ├── 面试题 16.10. 生存人数 │ └── python.py │ ├── 面试题 16.11. 跳水板 │ └── 面试题 16.11. 跳水板.py │ ├── 面试题 16.18. 模式匹配 │ └── 面试题 16.18. 模式匹配.py │ ├── 面试题 17.12. BiNode LCCI │ └── solve.py │ ├── 面试题 17.13. 恢复空格 │ └── 面试题 17.13. 恢复空格.py │ ├── 面试题29. 顺时针打印矩阵 │ └── 面试题29. 顺时针打印矩阵.py │ └── 面试题64. 求1+2+…+n │ └── 面试题64. 求1+2+…+n.py ├── PAT ├── 乙级 │ ├── 1016 部分A+B │ │ └── solve.py │ ├── 1017 A除以B │ │ └── solve.py │ └── 1018 锤子剪刀布 │ │ └── solve.py └── 甲级 │ ├── 1001 A+B Format │ └── code.py │ ├── 1002 A+B for Polynomials │ └── code.py │ ├── 1005 Spell It Right │ └── code.py │ ├── 1008 Elevator │ └── code.py │ ├── 1011 World Cup Betting │ └── code.py │ ├── 1015 Reversible Primes │ └── code.py │ ├── 1019 General Palindromic Number │ └── code.py │ ├── 1023 Have Fun with Numbers │ └── code.py │ ├── 1027 Colors in Mars │ └── code.py │ ├── 1031 Hello World for U │ └── code.py │ ├── 1034 Head of a Gang │ └── code.py │ ├── 1035 Password │ └── code.py │ ├── 1042 Shuffling Machine │ └── code.py │ ├── 1100 Mars Numbers │ └── code.py │ └── 1107 Social Clusters │ └── code.py ├── POJ ├── 1000.A+B Problem │ └── code.cpp ├── 1001.Exponentiation │ ├── code.cpp │ ├── code.exe │ └── gmon.out ├── 1062.昂贵的聘礼 │ ├── code.cpp │ ├── code.exe │ ├── gmon.out │ └── graph.png ├── 1125.Stockbroker Grapevine │ ├── code.cpp │ ├── code.exe │ ├── gmon.out │ └── graph.png ├── 1502.MPI Maelstrom │ ├── code.cpp │ ├── code.exe │ └── gmon.out ├── 1511.Invitation Cards │ ├── code.cpp │ ├── code.exe │ ├── gmon.out │ └── graph.png ├── 2965.The Pilots Brothers' refrigerator │ └── c++.cpp ├── 3061.Subsequence │ ├── 3061.Subsequence.py │ └── README.md └── 3981. 字符串替换 │ ├── c++.cpp │ └── c++.exe ├── README.md ├── 百练 └── 1363.Rails │ ├── README.md │ └── python.py ├── 算法与数据结构之美 ├── Algorithm │ ├── BinarySystem │ │ ├── 10_to_2 │ │ │ └── 10_to_2.py │ │ ├── 10_to_any │ │ │ └── 10_to_any.py │ │ ├── 2_to_10 │ │ │ └── 2_to_10.py │ │ ├── Learn.md │ │ ├── M_to_N │ │ │ └── M_to_N.py │ │ └── any_to_10 │ │ │ └── any_to_10.py │ ├── BitOperation │ │ └── XOR_Operation │ │ │ ├── 1.XOR_swap.py │ │ │ ├── 2.Odd_Times_Num1.py │ │ │ ├── 3.Odd_Times_Num2.py │ │ │ └── README.md │ ├── DynamicProgramming │ │ ├── LongestCommonSubsequence │ │ │ └── code.py │ │ └── NokiaProblem │ │ │ ├── README.md │ │ │ └── code.py │ ├── Greedy │ │ ├── 01.找零问题.py │ │ ├── 02.背包问题.py │ │ └── 03.活动选择问题.py │ ├── KMP │ │ ├── README.md │ │ └── template.py │ ├── Permutation │ │ └── solve.py │ ├── Recursion │ │ ├── 01.Hanoi │ │ │ └── 01.Hanoi.py │ │ └── NoteBook.md │ ├── Search │ │ └── BinarySearch │ │ │ ├── README.md │ │ │ └── code.py │ └── Sort │ │ ├── BubbleSort │ │ ├── BubbleSortCode.py │ │ ├── 动图演示.gif │ │ └── 最大间隙问题 │ │ │ └── code.py │ │ ├── BucketSort │ │ ├── BucketSortCode.py │ │ └── 动图演示.gif │ │ ├── CountSort │ │ ├── CountSortCode.py │ │ └── 动图演示.gif │ │ ├── HeapSort │ │ ├── 01.topK │ │ │ └── topK.py │ │ ├── HeapSortCode.py │ │ └── 动图演示.gif │ │ ├── InsertSort │ │ ├── InsertSortCode.py │ │ └── 动图演示.gif │ │ ├── MergeSort │ │ ├── MergeSortCode.py │ │ ├── NoteBook.md │ │ ├── 动图演示.gif │ │ └── 小和问题 │ │ │ └── code.py │ │ ├── Noteook.md │ │ ├── QuickSort │ │ ├── NoteBook.md │ │ ├── RandomQuickSort │ │ │ └── RandomQuickSortCode.py │ │ ├── 动图演示.gif │ │ └── 荷兰国旗问题 │ │ │ └── code.py │ │ ├── RadixSort │ │ ├── RadixSortCode.py │ │ └── 动图演示.gif │ │ ├── SelectSort │ │ ├── SelectSortCode.py │ │ └── 动图演示.gif │ │ ├── ShellSort │ │ ├── ShellSortCode.py │ │ └── 动图演示.gif │ │ └── 排序算法.eddx ├── DataStructure │ ├── Graph │ │ ├── MinimumSpanningTree │ │ │ ├── kruskal.py │ │ │ └── prim.py │ │ ├── ShortestPaths │ │ │ ├── bellman-ford.py │ │ │ ├── dijkstra.py │ │ │ ├── floyd-warshall.py │ │ │ ├── spfa.py │ │ │ └── 最短路径.ppt │ │ ├── TopologicalSorting │ │ │ ├── Topological Sorting.pptx │ │ │ ├── WeChat Screenshot_20210113173918.png │ │ │ ├── code.cpp │ │ │ ├── template.cpp │ │ │ └── template.exe │ │ └── graph.py │ ├── Queue │ │ └── 迷宫问题 │ │ │ └── code.py │ ├── Stack │ │ ├── Stack.pptx │ │ ├── images │ │ │ ├── shareStack.gif │ │ │ ├── shareStack.png │ │ │ └── stack.png │ │ ├── stack.cpp │ │ ├── stlStack.cpp │ │ ├── 共享栈 │ │ │ └── shareStack.cpp │ │ └── 迷宫问题 │ │ │ └── code.py │ ├── String │ │ └── Manacher │ │ │ └── template.py │ ├── Tree │ │ ├── BinaryTree │ │ │ ├── 1.二叉树遍历.py │ │ │ ├── 2.前驱后继节点.py │ │ │ ├── 3.序列化与反序列化.py │ │ │ ├── 4.验证平衡二叉树.py │ │ │ ├── 5.验证搜索二叉树.py │ │ │ ├── 6.验证完全二叉树.py │ │ │ ├── 7.完全二叉树节点个数.py │ │ │ ├── BinaryTree.py │ │ │ ├── KMP.py │ │ │ └── README.md │ │ ├── DP │ │ │ └── README.md │ │ └── Trie_Tree │ │ │ └── code.py │ ├── UnionFindSet │ │ ├── README.md │ │ ├── Union Find Set.pptx │ │ ├── images │ │ │ ├── 031047279682220.jpg │ │ │ ├── 1283325_190152_1_lit.jpg │ │ │ ├── 16f5df0a4a87b7f5_600_0.jpeg │ │ │ ├── 2019112810120902210.png │ │ │ ├── QQ截图20210113163609.png │ │ │ ├── WeChat Screenshot_20210114191259.png │ │ │ └── image.png │ │ ├── template.cpp │ │ ├── template.py │ │ └── 岛问题 │ │ │ └── code.py │ ├── 栈实现队列 │ │ └── code.py │ └── 线性表 │ │ └── LinkedList │ │ ├── DoubleLinkedList.py │ │ ├── template.cpp │ │ └── template.exe ├── 宏观调度 │ ├── Find number in sorted matrix │ │ └── code.py │ ├── Print matrix zig zag │ │ └── code.py │ ├── Rotate matrix │ │ └── code.py │ └── Spiral prider print matrix │ │ └── code.py ├── 数论 │ └── 卢卡斯定理 │ │ └── README.md └── 算法基础 │ └── 1_枚举 │ └── 1_1_1.py └── 计蒜客 ├── T1408矩形嵌套 └── code.py └── T1880最长公共子序列 └── code.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/.gitignore -------------------------------------------------------------------------------- /51Nod/1006.最长公共子序列Lcs/1006.最长公共子序列Lcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/51Nod/1006.最长公共子序列Lcs/1006.最长公共子序列Lcs.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/入门训练/A+B问题/A+B问题.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/入门训练/A+B问题/A+B问题.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/入门训练/A+B问题/input1.txt: -------------------------------------------------------------------------------- 1 | 0 451 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/入门训练/Fibonacci数列/input1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/入门训练/圆的面积/圆的面积.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/入门训练/圆的面积/圆的面积.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-195-包子凑数.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-195-包子凑数.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-227-回文日期.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-227-回文日期.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-25-城市建设.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-25-城市建设.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-262-砝码称重.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-262-砝码称重.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-278-双向排序.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-278-双向排序.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-281-时间显示.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-281-时间显示.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-284-杨辉三角形.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-284-杨辉三角形.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-40-k倍区间.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-40-k倍区间.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-51-观光铁路.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-53-分考场.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-53-分考场.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-59-作物杂交.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-59-作物杂交.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-63-成绩统计.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-63-成绩统计.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-65-单词分析.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/历届试题/PREV-65-单词分析.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-72-组合数问题/README.md: -------------------------------------------------------------------------------- 1 | [题目链接](http://lx.lanqiao.cn/problem.page?gpid=T2700) 2 | 3 | --- 4 | 5 | ## Ideas 6 | 7 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/01字串/试题 基础练习 01字串.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/01字串/试题 基础练习 01字串.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/十六进制转八进制/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/十六进制转八进制/code.cpp -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/十六进制转八进制/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/十六进制转八进制/code.exe -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/十六进制转八进制/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/十六进制转八进制/input1.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/十六进制转八进制/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/十六进制转八进制/output1.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/十六进制转十进制/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/十六进制转十进制/code.cpp -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/十六进制转十进制/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/十六进制转十进制/code.exe -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/字母图形/试题 基础练习 字母图形.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/字母图形/试题 基础练习 字母图形.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/数列排序/试题 基础练习 数列排序.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/数列排序/试题 基础练习 数列排序.cpp -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/数列排序/试题 基础练习 数列排序.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/数列排序/试题 基础练习 数列排序.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/闰年判断/试题 基础练习 闰年判断.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/基础练习/闰年判断/试题 基础练习 闰年判断.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法提高/ADV-233 队列操作/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/算法提高/ADV-233 队列操作/README.md -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法提高/ADV-233 队列操作/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/算法提高/ADV-233 队列操作/python.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-1006-拿金币/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/算法训练/ALGO-1006-拿金币/README.md -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-1006-拿金币/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/算法训练/ALGO-1006-拿金币/python.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-1007-印章/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Exercises/算法训练/ALGO-1007-印章/python.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-221 数据交换/input1.txt: -------------------------------------------------------------------------------- 1 | 4 7 -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-221 数据交换/output1.txt: -------------------------------------------------------------------------------- 1 | 7 4 -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-221-数据交换/input1.txt: -------------------------------------------------------------------------------- 1 | 4 7 -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-221-数据交换/output1.txt: -------------------------------------------------------------------------------- 1 | 7 4 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/4/output1.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/input1.txt: -------------------------------------------------------------------------------- 1 | 3 1 2 | 1 3 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/output1.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/output2.txt: -------------------------------------------------------------------------------- 1 | 657258 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/output3.txt: -------------------------------------------------------------------------------- 1 | 3782448 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/output4.txt: -------------------------------------------------------------------------------- 1 | 32549018 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/output5.txt: -------------------------------------------------------------------------------- 1 | 3850842 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/input1.txt: -------------------------------------------------------------------------------- 1 | 5 9 15 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/input2.txt: -------------------------------------------------------------------------------- 1 | 1 4 7 13 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/input3.txt: -------------------------------------------------------------------------------- 1 | 1 5 8 12 19 21 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/input4.txt: -------------------------------------------------------------------------------- 1 | 1 400 500 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/output1.txt: -------------------------------------------------------------------------------- 1 | 5 8 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/output2.txt: -------------------------------------------------------------------------------- 1 | 7 10 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/output3.txt: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/output4.txt: -------------------------------------------------------------------------------- 1 | 1 399 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/output5.txt: -------------------------------------------------------------------------------- 1 | 134 148 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/5/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/National _Java_A/5/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/National _Java_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/National _Java_A/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/National _Java_B/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/4/图2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/National _Java_B/4/图2.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/5/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/National _Java_B/5/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/National _Java_C/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/National _Java_C/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/National _Java_C/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/3/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_C_C++_A/3/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/4/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_C_C++_A/4/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/9/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_C_C++_A/9/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/9/p2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_C_C++_A/9/p2.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/3/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_C_C++_C/3/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/4/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_C_C++_C/4/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/8/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_C_C++_C/8/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/1/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_A/1/code.py -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/2/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_A/2/code.py -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/2/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_A/2/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/3/code.py: -------------------------------------------------------------------------------- 1 | print(str(2 ** 11213 - 1)[-100:]) 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/4/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_A/4/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/9/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_A/9/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/9/p2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_A/9/p2.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/1/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_B/1/code.py -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/3/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_B/3/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/1/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_C/1/code.py -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/10/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_C/10/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/10/p2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_C/10/p2.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/8/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2013/Province_Java_C/8/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/5/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_C_C++_A/5/1.PNG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/9/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_C_C++_A/9/1.PNG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/6/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_C_C++_B/6/1.PNG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/7/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_C_C++_B/7/1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/8/input1.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 20 4 -3 -10 -22 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/8/output1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_A/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_A/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_A/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_B/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_B/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/4/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_C/4/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/Province_Java_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_A/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_A/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_A/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_B/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_B/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/1/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_C/1/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_C/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/7/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_C/7/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2014-/School_C_C++_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_A/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_A/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_B/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_B/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_B/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_B/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_C/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_C/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/National _Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/1/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_A/1/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_A/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_B/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/9/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/9/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/9/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/9/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_C_C++_C/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_A/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_A/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/1/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_B/1/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_B/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_B/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_B/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/5/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/5/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/9/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/9/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/9/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/9/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2015/Province_Java_C/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/5/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_A/5/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_A/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/4/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_B/4/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_C/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/5/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_C/5/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/National _Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图3.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_A/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图3.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_B/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/7/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/7/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_C_C++_C/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/7/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/7/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/7/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/7/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/7/图3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/7/图3.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_A/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/7/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/7/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/7/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/7/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/7/图3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/7/图3.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_B/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2016/Province_Java_C/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/2/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_A/2/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_A/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/6/题目.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_A/6/题目.doc -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_B/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/6/题目.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_B/6/题目.doc -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_C/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/6/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_C/6/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/National _Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/2/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/2/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p3.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/9/9..cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/9/9..cpp -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/9/9..exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/9/9..exe -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/H/8..cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/H/8..cpp -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/H/8..exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/H/8..exe -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/H/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_A/H/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p3.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_B/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/2/A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/2/A.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/2/B.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/2/B.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/2/C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/2/C.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_C_C++_C/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/1/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/1/code.py -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/1/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/1/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/2/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/2/code.py -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/4/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/4/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/4/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/4/p2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/4/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/4/p3.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_A/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/2/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/2/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/4/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/4/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_B/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/2/A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/2/A.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/2/B.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/2/B.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/2/C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/2/C.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2017/Province_Java_C/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/4/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_A/4/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_A/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_A/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/6/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/6/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/8/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/8/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/9/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/9/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2018-/Province_Java_C/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_A/B/code.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_C/D/code.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_C/E/题目.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_C/F/题目.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_C/G/题目.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_C/H/题目.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_C/I/题目.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_C/J/题目.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_G/inc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2019-/National_C_C++_G/inc.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_Java_A/inc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2019-/National_Java_A/inc.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_Java_A/trip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2019-/National_Java_A/trip.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_Java_B/inc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2019-/National_Java_B/inc.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_Java_B/trip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2019-/National_Java_B/trip.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_Java_G/inc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2019-/National_Java_G/inc.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_Java_G/trip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2019-/National_Java_G/trip.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/10月/Province_Java_B/E/code.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/7月/Province_C_C++_B/5/code.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | pass 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/7月/Province_C_C++_C/1/code.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | print((7 ** 2020) % 1921) 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/National_Java_B/C/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2020-/National_Java_B/C/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/National_Java_B/inc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/2020-/National_Java_B/inc.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/National_Java_C/G/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/National_Python/C/python.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | print(100) 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Province_C_C++_A/I/solve.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Province_C_C++_A/J/solve.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Simulation_1/9.序列计数/code.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Simulation_2/本科组/2.最多边数/code.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2022/Province_Python_B/G/python.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | pass 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2022/Province_Python_B/README.md: -------------------------------------------------------------------------------- 1 | 最新消息 : 第十三届蓝桥杯大赛省赛试题解压密码(软件类):QaTLL2d7 ,注意区分大小写。 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/真题分析.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/BlueBridgeCup/Subject/真题分析.xlsx -------------------------------------------------------------------------------- /Gym/100049A/100049A.Chemistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Gym/100049A/100049A.Chemistry.py -------------------------------------------------------------------------------- /Gym/100049A/A - Chemistry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Gym/100049A/A - Chemistry.pdf -------------------------------------------------------------------------------- /Gym/100049B/100049B.Bound Found.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Gym/100049B/100049B.Bound Found.py -------------------------------------------------------------------------------- /Gym/100049B/B - Bound Found.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Gym/100049B/B - Bound Found.pdf -------------------------------------------------------------------------------- /Interview/ByteDance/2018/1-最外层的点/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/ByteDance/2018/1-最外层的点/README.md -------------------------------------------------------------------------------- /Interview/ByteDance/2018/1-最外层的点/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/ByteDance/2018/1-最外层的点/python.py -------------------------------------------------------------------------------- /Interview/ByteDance/2018/2-最大值区间/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/ByteDance/2018/2-最大值区间/README.md -------------------------------------------------------------------------------- /Interview/ByteDance/2018/2-最大值区间/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/ByteDance/2018/2-最大值区间/python.py -------------------------------------------------------------------------------- /Interview/ByteDance/Exercise/ZJ1附加题.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/ByteDance/Exercise/ZJ1附加题.py -------------------------------------------------------------------------------- /Interview/JD/JD1-年终奖/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/JD/JD1-年终奖/solve.py -------------------------------------------------------------------------------- /Interview/JD/JD15-括号匹配方案/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/JD/JD15-括号匹配方案/solve.py -------------------------------------------------------------------------------- /Interview/JD/JD2-抛小球/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/JD/JD2-抛小球/solve.py -------------------------------------------------------------------------------- /Interview/JD/JD3-小东分苹果/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/JD/JD3-小东分苹果/solve.py -------------------------------------------------------------------------------- /Interview/JD/JD4-上台阶/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/JD/JD4-上台阶/solve.py -------------------------------------------------------------------------------- /Interview/JD/JD5-小球的距离/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/JD/JD5-小球的距离/solve.py -------------------------------------------------------------------------------- /Interview/JD/JD6-保卫方案/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/JD/JD6-保卫方案/solve.py -------------------------------------------------------------------------------- /Interview/JD/JD7-集合/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/Interview/JD/JD7-集合/solve.py -------------------------------------------------------------------------------- /LeetCode/LCP/01. Guess Numbers/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/LCP/01. Guess Numbers/code.py -------------------------------------------------------------------------------- /LeetCode/LCP/06. 拿硬币/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/LCP/06. 拿硬币/solve.py -------------------------------------------------------------------------------- /LeetCode/LCP/07. 传递信息/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/LCP/07. 传递信息/python.py -------------------------------------------------------------------------------- /LeetCode/LCP/13. 寻宝/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/LCP/13. 寻宝/code.py -------------------------------------------------------------------------------- /LeetCode/Multithreading/1117. Building H2O/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Multithreading/1117. Building H2O/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/1. Two Sum/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/1. Two Sum/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/1. Two Sum/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/1. Two Sum/solve.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/100. Same Tree/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/100. Same Tree/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/110. Balanced Binary Tree/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/110. Balanced Binary Tree/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/112. Path Sum/112. Path Sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/112. Path Sum/112. Path Sum.py -------------------------------------------------------------------------------- /LeetCode/Problems/118. Pascal's Triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/118. Pascal's Triangle/README.md -------------------------------------------------------------------------------- /LeetCode/Problems/118. Pascal's Triangle/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/118. Pascal's Triangle/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/120. Triangle/120. Triangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/120. Triangle/120. Triangle.py -------------------------------------------------------------------------------- /LeetCode/Problems/127. Word Ladder/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/127. Word Ladder/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/13. Roman to Integer/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/13. Roman to Integer/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/130. Surrounded Regions/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/130. Surrounded Regions/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/133. Clone Graph/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/133. Clone Graph/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/134. Gas Station/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/134. Gas Station/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/135. Candy/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/135. Candy/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/139. Word Break/139. Word Break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/139. Word Break/139. Word Break.py -------------------------------------------------------------------------------- /LeetCode/Problems/141. Linked List Cycle/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/141. Linked List Cycle/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/142. Linked List Cycle II/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/142. Linked List Cycle II/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/143.Reorder List/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/143.Reorder List/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/146. LRU Cache/146. LRU Cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/146. LRU Cache/146. LRU Cache.py -------------------------------------------------------------------------------- /LeetCode/Problems/1470. Shuffle the Array/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/1470. Shuffle the Array/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/148. Sort List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/148. Sort List/README.md -------------------------------------------------------------------------------- /LeetCode/Problems/148. Sort List/images/格局打开.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/148. Sort List/images/格局打开.jpg -------------------------------------------------------------------------------- /LeetCode/Problems/148. Sort List/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/148. Sort List/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/15. 3Sum/15. 3Sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/15. 3Sum/15. 3Sum.py -------------------------------------------------------------------------------- /LeetCode/Problems/1600. Throne Inheritance/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/1600. Throne Inheritance/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/169. Majority Element/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/169. Majority Element/c++.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/169. Majority Element/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/169. Majority Element/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/179. Largest Number/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/179. Largest Number/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/18. 4Sum/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/18. 4Sum/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/189. Rotate Array/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/189. Rotate Array/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/190. Reverse Bits/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/190. Reverse Bits/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/2. Add Two Numbers/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/2. Add Two Numbers/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/20. Valid Parentheses/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/20. Valid Parentheses/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/202. Happy Number/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/202. Happy Number/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/204. Count Primes/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/204. Count Primes/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/205. Isomorphic Strings/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/205. Isomorphic Strings/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/206.Reverse Linked List/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/206.Reverse Linked List/solve.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/207. Course Schedule/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/207. Course Schedule/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/21. Merge Two Sorted Lists/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/21. Merge Two Sorted Lists/c++.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/21. Merge Two Sorted Lists/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/21. Merge Two Sorted Lists/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/213. House Robber II/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/213. House Robber II/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/217. Contains Duplicate/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/217. Contains Duplicate/c++.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/217. Contains Duplicate/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/217. Contains Duplicate/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/227. Basic Calculator II/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/227. Basic Calculator II/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/231. Power of Two/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/231. Power of Two/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/240. Search a 2D Matrix II/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LeetCode/Problems/242. Valid Anagram/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/242. Valid Anagram/c++.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/242. Valid Anagram/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/242. Valid Anagram/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/264. Ugly Number II/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/264. Ugly Number II/solve.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/264. Ugly Number II/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/264. Ugly Number II/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/268. Missing Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/268. Missing Number/README.md -------------------------------------------------------------------------------- /LeetCode/Problems/268. Missing Number/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/268. Missing Number/c++.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/268. Missing Number/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/268. Missing Number/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/27. Remove Element/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/27. Remove Element/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/274. H-Index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/274. H-Index/README.md -------------------------------------------------------------------------------- /LeetCode/Problems/274. H-Index/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/274. H-Index/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/28. Implement strStr()/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/28. Implement strStr()/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/28. 实现 strStr()/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/28. 实现 strStr()/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/290. Word Pattern/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/290. Word Pattern/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/31. Next Permutation/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/31. Next Permutation/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/327. Count of Range Sum/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/327. Count of Range Sum/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/330. Patching Array/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/330. Patching Array/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/336. Palindrome Pairs/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/336. Palindrome Pairs/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/337. House Robber III/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/337. House Robber III/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/342. Power of Four/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/342. Power of Four/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/343. Integer Break/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/343. Integer Break/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/344. Reverse String/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/344. Reverse String/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/38. 外观数列/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/38. 外观数列/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/389. Find the Difference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/389. Find the Difference/README.md -------------------------------------------------------------------------------- /LeetCode/Problems/389. Find the Difference/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/389. Find the Difference/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/392. Is Subsequence/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/392. Is Subsequence/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/401. Binary Watch/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/401. Binary Watch/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/414. Third Maximum Number/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/414. Third Maximum Number/c++.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/415. Add Strings/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/415. Add Strings/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/43. Multiply Strings/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/43. Multiply Strings/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/445. Add Two Numbers II/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/445. Add Two Numbers II/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/455. Assign Cookies/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/455. Assign Cookies/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/463. Island Perimeter/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/463. Island Perimeter/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/48. Rotate Image/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/48. Rotate Image/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/480. Sliding Window Median/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/480. Sliding Window Median/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/485. Max Consecutive Ones/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/485. Max Consecutive Ones/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/49. Group Anagrams/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/49. Group Anagrams/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/494. Target Sum/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/494. Target Sum/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/507. Perfect Number/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/507. Perfect Number/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/509. Fibonacci Number/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/509. Fibonacci Number/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/525. Contiguous Array/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/525. Contiguous Array/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/53. Maximum Subarray/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/53. Maximum Subarray/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/530. 二叉搜索树的最小绝对差/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/530. 二叉搜索树的最小绝对差/solve.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/54. Spiral Matrix/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/54. Spiral Matrix/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/543. 二叉树的直径/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/543. 二叉树的直径/solve.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/546. Remove Boxes/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/546. Remove Boxes/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/547. Number of Provinces/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/547. Number of Provinces/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/561. Array Partition I/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/561. Array Partition I/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/566. Reshape the Matrix/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/566. Reshape the Matrix/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/567. Permutation in String/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/567. Permutation in String/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/57 - II. 和为s的连续正数序列/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/57 - II. 和为s的连续正数序列/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/58. Length of Last Word/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/58. Length of Last Word/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/59. Spiral Matrix II/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/59. Spiral Matrix II/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/62. Unique Paths/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/62. Unique Paths/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/621. Task Scheduler/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/621. Task Scheduler/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/64. Minimum Path Sum/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/64. Minimum Path Sum/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/66. Plus One/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/66. Plus One/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/67. Add Binary/67. Add Binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/67. Add Binary/67. Add Binary.py -------------------------------------------------------------------------------- /LeetCode/Problems/680. Valid Palindrome II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/680. Valid Palindrome II/README.md -------------------------------------------------------------------------------- /LeetCode/Problems/684. Redundant Connection/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/684. Redundant Connection/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/692. Top K Frequent Words/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/692. Top K Frequent Words/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/697. Degree of an Array/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/697. Degree of an Array/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/7. Reverse Integer/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/7. Reverse Integer/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/7. Reverse Integer/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/7. Reverse Integer/solve.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/700. 二叉搜索树中的搜索/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/700. 二叉搜索树中的搜索/solve.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/704. Binary Search/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/704. Binary Search/python.py -------------------------------------------------------------------------------- /LeetCode/Problems/705. Design HashSet/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/705. Design HashSet/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/706. Design HashMap/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/706. Design HashMap/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/721. Accounts Merge/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/721. Accounts Merge/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/724. Find Pivot Index/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/724. Find Pivot Index/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/726. Number of Atoms/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/726. Number of Atoms/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/733. Flood Fill/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/733. Flood Fill/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/739. Daily Temperatures/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/739. Daily Temperatures/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/75. Sort Colors/75. Sort Colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/75. Sort Colors/75. Sort Colors.py -------------------------------------------------------------------------------- /LeetCode/Problems/752. Open the Lock/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/752. Open the Lock/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/763. Partition Labels/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/763. Partition Labels/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/766. Toeplitz Matrix/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/766. Toeplitz Matrix/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/778. Swim in Rising Water/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/778. Swim in Rising Water/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/832. Flipping an Image/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/832. Flipping an Image/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/839. Similar String Groups/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/839. Similar String Groups/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/85. Maximal Rectangle/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/85. Maximal Rectangle/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/856. Score of Parentheses/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/856. Score of Parentheses/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/867. Transpose Matrix/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/867. Transpose Matrix/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/87. Scramble String/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/87. Scramble String/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/872. Leaf-Similar Trees/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/872. Leaf-Similar Trees/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/879. Profitable Schemes/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/879. Profitable Schemes/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/88. Merge Sorted Array/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/88. Merge Sorted Array/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/888. Fair Candy Swap/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/888. Fair Candy Swap/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/894. All Possible Full Binary Trees/README.md: -------------------------------------------------------------------------------- 1 | [894. 所有可能的满二叉树](https://leetcode-cn.com/problems/all-possible-full-binary-trees/) 2 | 3 | -------------------------------------------------------------------------------- /LeetCode/Problems/896. Monotonic Array/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/896. Monotonic Array/solve.py -------------------------------------------------------------------------------- /LeetCode/Problems/9. Palindrome Number/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/9. Palindrome Number/solve.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/925. Long Pressed Name/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/925. Long Pressed Name/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/93. Restore IP Addresses/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/93. Restore IP Addresses/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/941. Valid Mountain Array/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/941. Valid Mountain Array/code.py -------------------------------------------------------------------------------- /LeetCode/Problems/997. Find the Town Judge/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Problems/997. Find the Town Judge/python.py -------------------------------------------------------------------------------- /LeetCode/SQL/175. Combine Two Tables/solve.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/SQL/175. Combine Two Tables/solve.sql -------------------------------------------------------------------------------- /LeetCode/SQL/176. Second Highest Salary/solve.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/SQL/176. Second Highest Salary/solve.sql -------------------------------------------------------------------------------- /LeetCode/SQL/182. Duplicate Emails/solve.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/SQL/182. Duplicate Emails/solve.sql -------------------------------------------------------------------------------- /LeetCode/SQL/627. Swap Salary/solve.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/SQL/627. Swap Salary/solve.sql -------------------------------------------------------------------------------- /LeetCode/Shell/192. Word Frequency/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Shell/192. Word Frequency/solve.sh -------------------------------------------------------------------------------- /LeetCode/Shell/193. Valid Phone Numbers/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/Shell/193. Valid Phone Numbers/solve.sh -------------------------------------------------------------------------------- /LeetCode/Shell/195. Tenth Line/solve.sh: -------------------------------------------------------------------------------- 1 | sed -n "10p" file.txt -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/06. 从尾到头打印链表/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/06. 从尾到头打印链表/solve.cpp -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/11. 旋转数组的最小数字/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/11. 旋转数组的最小数字/code.py -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/15. 二进制中1的个数/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/15. 二进制中1的个数/solve.py -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/25. 合并两个排序的链表/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/25. 合并两个排序的链表/solve.cpp -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/28. 对称的二叉树/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/28. 对称的二叉树/c++.cpp -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/37. 序列化二叉树/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/37. 序列化二叉树/solve.py -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/38. 字符串的排列/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/38. 字符串的排列/solve.py -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/42. 连续子数组的最大和/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/42. 连续子数组的最大和/solve.py -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/55 - II. 平衡二叉树/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/55 - II. 平衡二叉树/c++.cpp -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/56. 二叉搜索树中两个节点之和/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/56. 二叉搜索树中两个节点之和/c++.cpp -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/85. 生成匹配的括号/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/85. 生成匹配的括号/README.md -------------------------------------------------------------------------------- /LeetCode/剑指 Offer/85. 生成匹配的括号/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/剑指 Offer/85. 生成匹配的括号/python.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 02.01. 移除重复节点/面试题 02.01. 移除重复节点.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 02.01. 移除重复节点/面试题 02.01. 移除重复节点.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 02.02. 返回倒数第 k 个节点/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 02.02. 返回倒数第 k 个节点/solve.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 02.03. 删除中间节点/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 02.03. 删除中间节点/solve.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 04.03. 特定深度节点链表/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 04.03. 特定深度节点链表/solve.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 08.03. Magic Index LCCI/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 08.03. Magic Index LCCI/code.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 10.05. 稀疏数组搜索/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 10.05. 稀疏数组搜索/python.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 16.10. 生存人数/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 16.10. 生存人数/python.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 16.11. 跳水板/面试题 16.11. 跳水板.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 16.11. 跳水板/面试题 16.11. 跳水板.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 16.18. 模式匹配/面试题 16.18. 模式匹配.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 16.18. 模式匹配/面试题 16.18. 模式匹配.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 17.12. BiNode LCCI/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 17.12. BiNode LCCI/solve.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题 17.13. 恢复空格/面试题 17.13. 恢复空格.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题 17.13. 恢复空格/面试题 17.13. 恢复空格.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题29. 顺时针打印矩阵/面试题29. 顺时针打印矩阵.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题29. 顺时针打印矩阵/面试题29. 顺时针打印矩阵.py -------------------------------------------------------------------------------- /LeetCode/面试题/面试题64. 求1+2+…+n/面试题64. 求1+2+…+n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/LeetCode/面试题/面试题64. 求1+2+…+n/面试题64. 求1+2+…+n.py -------------------------------------------------------------------------------- /PAT/乙级/1016 部分A+B/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/乙级/1016 部分A+B/solve.py -------------------------------------------------------------------------------- /PAT/乙级/1017 A除以B/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/乙级/1017 A除以B/solve.py -------------------------------------------------------------------------------- /PAT/乙级/1018 锤子剪刀布/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/乙级/1018 锤子剪刀布/solve.py -------------------------------------------------------------------------------- /PAT/甲级/1001 A+B Format/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1001 A+B Format/code.py -------------------------------------------------------------------------------- /PAT/甲级/1002 A+B for Polynomials/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1002 A+B for Polynomials/code.py -------------------------------------------------------------------------------- /PAT/甲级/1005 Spell It Right/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1005 Spell It Right/code.py -------------------------------------------------------------------------------- /PAT/甲级/1008 Elevator/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1008 Elevator/code.py -------------------------------------------------------------------------------- /PAT/甲级/1011 World Cup Betting/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1011 World Cup Betting/code.py -------------------------------------------------------------------------------- /PAT/甲级/1015 Reversible Primes/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1015 Reversible Primes/code.py -------------------------------------------------------------------------------- /PAT/甲级/1019 General Palindromic Number/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1019 General Palindromic Number/code.py -------------------------------------------------------------------------------- /PAT/甲级/1023 Have Fun with Numbers/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1023 Have Fun with Numbers/code.py -------------------------------------------------------------------------------- /PAT/甲级/1027 Colors in Mars/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1027 Colors in Mars/code.py -------------------------------------------------------------------------------- /PAT/甲级/1031 Hello World for U/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1031 Hello World for U/code.py -------------------------------------------------------------------------------- /PAT/甲级/1034 Head of a Gang/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1034 Head of a Gang/code.py -------------------------------------------------------------------------------- /PAT/甲级/1035 Password/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1035 Password/code.py -------------------------------------------------------------------------------- /PAT/甲级/1042 Shuffling Machine/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1042 Shuffling Machine/code.py -------------------------------------------------------------------------------- /PAT/甲级/1100 Mars Numbers/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/PAT/甲级/1100 Mars Numbers/code.py -------------------------------------------------------------------------------- /PAT/甲级/1107 Social Clusters/code.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | -------------------------------------------------------------------------------- /POJ/1000.A+B Problem/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1000.A+B Problem/code.cpp -------------------------------------------------------------------------------- /POJ/1001.Exponentiation/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1001.Exponentiation/code.cpp -------------------------------------------------------------------------------- /POJ/1001.Exponentiation/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1001.Exponentiation/code.exe -------------------------------------------------------------------------------- /POJ/1001.Exponentiation/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1001.Exponentiation/gmon.out -------------------------------------------------------------------------------- /POJ/1062.昂贵的聘礼/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1062.昂贵的聘礼/code.cpp -------------------------------------------------------------------------------- /POJ/1062.昂贵的聘礼/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1062.昂贵的聘礼/code.exe -------------------------------------------------------------------------------- /POJ/1062.昂贵的聘礼/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1062.昂贵的聘礼/gmon.out -------------------------------------------------------------------------------- /POJ/1062.昂贵的聘礼/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1062.昂贵的聘礼/graph.png -------------------------------------------------------------------------------- /POJ/1125.Stockbroker Grapevine/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1125.Stockbroker Grapevine/code.cpp -------------------------------------------------------------------------------- /POJ/1125.Stockbroker Grapevine/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1125.Stockbroker Grapevine/code.exe -------------------------------------------------------------------------------- /POJ/1125.Stockbroker Grapevine/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1125.Stockbroker Grapevine/gmon.out -------------------------------------------------------------------------------- /POJ/1125.Stockbroker Grapevine/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1125.Stockbroker Grapevine/graph.png -------------------------------------------------------------------------------- /POJ/1502.MPI Maelstrom/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1502.MPI Maelstrom/code.cpp -------------------------------------------------------------------------------- /POJ/1502.MPI Maelstrom/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1502.MPI Maelstrom/code.exe -------------------------------------------------------------------------------- /POJ/1502.MPI Maelstrom/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1502.MPI Maelstrom/gmon.out -------------------------------------------------------------------------------- /POJ/1511.Invitation Cards/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1511.Invitation Cards/code.cpp -------------------------------------------------------------------------------- /POJ/1511.Invitation Cards/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1511.Invitation Cards/code.exe -------------------------------------------------------------------------------- /POJ/1511.Invitation Cards/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1511.Invitation Cards/gmon.out -------------------------------------------------------------------------------- /POJ/1511.Invitation Cards/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/1511.Invitation Cards/graph.png -------------------------------------------------------------------------------- /POJ/2965.The Pilots Brothers' refrigerator/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/2965.The Pilots Brothers' refrigerator/c++.cpp -------------------------------------------------------------------------------- /POJ/3061.Subsequence/3061.Subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/3061.Subsequence/3061.Subsequence.py -------------------------------------------------------------------------------- /POJ/3061.Subsequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/3061.Subsequence/README.md -------------------------------------------------------------------------------- /POJ/3981. 字符串替换/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/3981. 字符串替换/c++.cpp -------------------------------------------------------------------------------- /POJ/3981. 字符串替换/c++.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/POJ/3981. 字符串替换/c++.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/README.md -------------------------------------------------------------------------------- /百练/1363.Rails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/百练/1363.Rails/README.md -------------------------------------------------------------------------------- /百练/1363.Rails/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/百练/1363.Rails/python.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/BinarySystem/10_to_2/10_to_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/BinarySystem/10_to_2/10_to_2.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/BinarySystem/2_to_10/2_to_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/BinarySystem/2_to_10/2_to_10.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/BinarySystem/Learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/BinarySystem/Learn.md -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/BinarySystem/M_to_N/M_to_N.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/BinarySystem/M_to_N/M_to_N.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/DynamicProgramming/NokiaProblem/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Greedy/01.找零问题.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Greedy/01.找零问题.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Greedy/02.背包问题.py: -------------------------------------------------------------------------------- 1 | def fractionalBackpack(): 2 | pass 3 | -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Greedy/03.活动选择问题.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Greedy/03.活动选择问题.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/KMP/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/KMP/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/KMP/template.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Permutation/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Permutation/solve.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Recursion/01.Hanoi/01.Hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Recursion/01.Hanoi/01.Hanoi.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Recursion/NoteBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Recursion/NoteBook.md -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Search/BinarySearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Search/BinarySearch/README.md -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Search/BinarySearch/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Search/BinarySearch/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/BubbleSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/BubbleSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/BubbleSort/最大间隙问题/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/BubbleSort/最大间隙问题/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/BucketSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/BucketSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/CountSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/CountSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/HeapSort/01.topK/topK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/HeapSort/01.topK/topK.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/HeapSort/HeapSortCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/HeapSort/HeapSortCode.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/HeapSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/HeapSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/InsertSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/InsertSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/MergeSort/NoteBook.md: -------------------------------------------------------------------------------- 1 | 归并排序的额外空间复杂度可以变成O(1),归并排序内部缓存法,但是非常难。 -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/MergeSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/MergeSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/MergeSort/小和问题/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/MergeSort/小和问题/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/Noteook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/Noteook.md -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/QuickSort/NoteBook.md: -------------------------------------------------------------------------------- 1 | 快速排序可以做到稳定性问题,01 stable sort。 -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/QuickSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/QuickSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/QuickSort/荷兰国旗问题/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/QuickSort/荷兰国旗问题/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/RadixSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/RadixSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/SelectSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/SelectSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/ShellSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/ShellSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/排序算法.eddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/Algorithm/Sort/排序算法.eddx -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Graph/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Graph/graph.py -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Queue/迷宫问题/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Queue/迷宫问题/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/Stack.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Stack/Stack.pptx -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/images/stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Stack/images/stack.png -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Stack/stack.cpp -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/stlStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Stack/stlStack.cpp -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/共享栈/shareStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Stack/共享栈/shareStack.cpp -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/迷宫问题/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Stack/迷宫问题/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Tree/BinaryTree/1.二叉树遍历.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Tree/BinaryTree/1.二叉树遍历.py -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Tree/BinaryTree/KMP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Tree/BinaryTree/KMP.py -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Tree/BinaryTree/README.md: -------------------------------------------------------------------------------- 1 | ## 二叉树 2 | 3 | -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Tree/DP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Tree/DP/README.md -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Tree/Trie_Tree/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/Tree/Trie_Tree/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/UnionFindSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/UnionFindSet/README.md -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/UnionFindSet/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/UnionFindSet/template.cpp -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/UnionFindSet/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/UnionFindSet/template.py -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/UnionFindSet/岛问题/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/UnionFindSet/岛问题/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/栈实现队列/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/DataStructure/栈实现队列/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/宏观调度/Print matrix zig zag/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/宏观调度/Print matrix zig zag/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/宏观调度/Rotate matrix/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/宏观调度/Rotate matrix/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/宏观调度/Spiral prider print matrix/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/宏观调度/Spiral prider print matrix/code.py -------------------------------------------------------------------------------- /算法与数据结构之美/数论/卢卡斯定理/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /算法与数据结构之美/算法基础/1_枚举/1_1_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/算法与数据结构之美/算法基础/1_枚举/1_1_1.py -------------------------------------------------------------------------------- /计蒜客/T1408矩形嵌套/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/计蒜客/T1408矩形嵌套/code.py -------------------------------------------------------------------------------- /计蒜客/T1880最长公共子序列/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/HEAD/计蒜客/T1880最长公共子序列/code.py --------------------------------------------------------------------------------