├── .obsidian ├── app.json ├── appearance.json ├── core-plugins.json ├── hotkeys.json └── workspace ├── 01_Algo ├── 01_BasicKnowledge │ ├── 17~32 │ │ ├── 17_拓扑排序.md │ │ ├── 21_数组压缩&观察位置替代枚举行为.md │ │ ├── 22_动态规划rest相关.md │ │ ├── 23_各种累加和.md │ │ ├── 24_滑动窗口.md │ │ ├── 25_单调栈.md │ │ ├── 26_斐波那契举证快速幂.md │ │ ├── 27_KMP.md │ │ ├── 28_Manacher.md │ │ ├── 29_bfprt&pool.md │ │ ├── 30_MorrisTraversal.md │ │ ├── 31_线段树.md │ │ ├── 32_IndexTree_AC.md │ │ └── Untitled.md │ ├── 1~16 │ │ ├── 01_二分法.md │ │ └── 快排.md │ └── 33~47 │ │ ├── 33_Hash.md │ │ ├── 34_资源限制.md │ │ ├── 39_数据量相关.md │ │ ├── 40_数据量&卡特兰.md │ │ └── 43_状态压缩的动态规划.md ├── 02_forGreat │ └── NormalGreat │ │ ├── 22_.md │ │ ├── 27_.md │ │ ├── 46节.md │ │ ├── 50_.md │ │ └── last.md ├── 03_LeetCodeTop │ ├── 666.md │ ├── Classic.md │ ├── Classic2.md │ ├── DailyCode.md │ ├── Hot.md │ └── Int.md ├── 04_Java │ ├── Java List --remove(int index)与remove(Object o)方法的区别.md │ ├── Java String类中的compareTo方法.md │ ├── Java 中String、StringBuilder和StringBuffer的区别.md │ ├── Java中ArrayList 扩容的代价.md │ ├── Java中HashMap, TreeMap 等的元素遍历顺序.md │ ├── Java中Integer包装类的的128陷阱.md │ ├── Java中split函数.md │ ├── Java中位图的实现.md │ ├── Java中容器, 堆等对加入重复值的处理.md │ ├── Java中的Stack结构.md │ ├── Java中的值传递跟引用传递.md │ ├── Java中的哈希表.md │ ├── Java中的容器, 队列, 堆栈.md │ ├── Java中的左移, 右移操作.md │ ├── Java中的整型, 正数, 负数.md │ ├── Java中的有序表.md │ ├── Java中计时用System.nanoTime().md │ ├── 为什么Java中String类indexof不使用KMP.md │ └── 程序中的随机函数.md ├── 05_Math │ ├── Anecdote.md │ ├── 判断一个数是不是质数.md │ ├── 剃刀函数与约瑟夫环.md │ ├── 卡特兰数.md │ ├── 四平方和定理.md │ ├── 排列组合.md │ ├── 排序算法的传递性.md │ ├── 数和矩阵的N次方怎么算最快.md │ ├── 斐波那契数列.md │ ├── 最大公约数 & 最小公倍数.md │ ├── 求一个数以2为底的对数.md │ ├── 求最大公约数.md │ ├── 泰勒公式.md │ ├── 牛顿迭代法开根号.md │ ├── 科学计数法.md │ ├── 稀疏矩阵及矩阵乘法.md │ ├── 素数 & 质数.md │ ├── 素数筛法.md │ ├── 约瑟夫环.md │ ├── 计算一个数的平方根.md │ └── 鸽笼原理.md ├── 06_Template │ ├── Dijkstra算法代码.md │ ├── KMP算法代码.md │ ├── Kruskal算法代码.md │ ├── LFU内存替换算法的实现.md │ ├── LRU内存替换算法的实现.md │ ├── Manacher算法代码.md │ ├── Morris实现中序遍历.md │ ├── Morris实现前序遍历.md │ ├── Morris实现后序遍历.md │ ├── Morris遍历代码.md │ ├── Prim算法代码.md │ ├── SB树代码.md │ ├── bfprt代码.md │ ├── 一个简单的Hash函数.md │ ├── 不使用加减乘除算符实现加减乘除(仅位运算).md │ ├── 两个等长有序数组求上中位数.md │ ├── 冒泡排序.md │ ├── 单调栈代码.md │ ├── 后缀数组DC3算法实现.md │ ├── 哈希表实现前缀树.md │ ├── 图的拓扑排序算法.md │ ├── 图的统一表述结构.md │ ├── 基数排序代码.md │ ├── 堆排序.md │ ├── 字母表实现前缀树.md │ ├── 字符串的全排列代码.md │ ├── 完美洗牌算法代码.md │ ├── 对数器.md │ ├── 并查集代码.md │ ├── 归并排序代码.md │ ├── 快速排序.md │ ├── 怎么按对角线推导二维矩阵的格子.md │ ├── 手写堆代码.md │ ├── 插入排序.md │ ├── 改写快排的方法求无序数组中的第k小.md │ ├── 数组L...R范围上的累加和计算代码.md │ ├── 数组中离给定K值最近的子数组累加和代码.md │ ├── 枚举所有的i行到j行的情况.md │ ├── 比较器.md │ ├── 求数组中的逆序对数量代码.md │ ├── 求数组小和代码.md │ ├── 没有小括号的表达式结果计算.md │ ├── 线段树代码.md │ ├── 荷兰国旗问题代码.md │ ├── 计数排序.md │ ├── 选择排序.md │ ├── 长方形中任意矩阵的累加和代码.md │ └── 随机生成双向链表.md ├── GenerateForTest │ ├── ACMMod.md │ └── Test.md ├── README.md ├── Tips │ ├── FunnySolution.md │ ├── LeetCodeNote.md │ ├── Tip.md │ └── 递归设计原则.md ├── Trick │ ├── 0x3f3f3f3f.md │ └── 最长递增子序列(LIS).md └── weekly │ ├── 22.02.09.md │ ├── 22.02.18.md │ ├── skill.md │ └── start.md ├── 02_DesignPatterns ├── 01_Singleton.md ├── 02_Strategy.md ├── 03_Factory.md ├── 04_Mediator.md ├── 05_Decorator.md ├── 06_ChainOfResponsibility.md ├── 07_Observer.md ├── 08_Composite.md ├── 09_Flyweight.md ├── 10_Proxy.md ├── 11_Iterator.md ├── 12_Visitor.md ├── 13_Builder.md ├── 14_Adapter.md ├── 15_Bridge.md ├── 16_Command.md ├── 17_ProtoType.md ├── 18_Memento.md ├── 19_TemplateMethod.md ├── 20_State.md ├── 21_Interpreter.md └── 22_总结.md ├── 03_JavaWeb ├── 01_JavaWeb.md ├── 01_SpringBoot │ └── SpringBootNote.md ├── 02_MyBatis.md ├── 03_SpringMVC.md ├── 04_SpringBoot.md ├── Mybatis核心流程图.png └── indexTree.png ├── 04_JUC ├── BytecodeInstruction.png ├── JUC_1.md ├── JVM.png ├── JVM脑图.png ├── System_IO.png ├── 多线程与高并发.md └── 常见面试问题.md ├── 05_JVM └── Test.md ├── 06_Middleware ├── 01_Redis │ ├── 01Redis前无古人后无来者.jpg │ ├── 02REDIS集群知识点.jpg │ ├── ProcessOn.md │ ├── RedisNote │ │ ├── 01.md │ │ └── 02.md │ ├── RedisSummary.md │ └── RedisUse │ │ ├── 01_Jmeter.md │ │ └── 02_redis思路.md ├── 02_ZooKeeper │ ├── ZKTest.md │ └── ZOOKEEPER.png ├── 03_Nginx │ └── Load Blalancing.md ├── 04_SkyWalking │ └── basic.md ├── Git.md └── README.md ├── 07_Network ├── 01_计算机网络基础知识.md ├── 02_OAuth.md ├── 03_加密算法.md └── 04_socket.md ├── 08_OS ├── IO.md └── Linux.md ├── 09_SystemDesign ├── 01_Legend of Hero │ ├── 00_BUG.md │ ├── 00_LOH.md │ ├── 01_LOHSummary.md │ ├── 02_ProtoBuf.md │ ├── 03_ChannelPipeline.md │ └── 04_CmdHandlerFactory.md ├── 02_Taxi │ ├── 00_设计中重要的点.md │ ├── 00_需求.md │ ├── 01_项目概述-需求分析.md │ ├── 02_服务拆分-接口设计.md │ ├── 03_工程设计-eureka优化_01.md │ ├── 04-eureka-server源码-服务测算.md │ ├── 05_用户登陆&验证码.md │ ├── 06_order&计价.md │ ├── 10_派单逻辑.md │ ├── 11_订单状态.md │ ├── 12_其他.md │ ├── 13_灰度发布.md │ ├── 14_zuul工作中的问题.md │ ├── 15_网约车坐标系问题.md │ ├── 16_2pc3pc.md │ ├── 23-tcc .md │ ├── 27-seata落地.md │ ├── 29-rocket总结-分布式事务总结.md │ ├── 30-大纲 技术点.md │ ├── 99_数据库设计.md │ └── eureka源码结构.png ├── 03_MySQL │ ├── 09-mysql架构.pdf │ ├── BasicKnowledge │ │ ├── 00_Tip.md │ │ ├── 01_数据类型.md │ │ ├── 02_修改数据code.md │ │ ├── 03_完整性约束.md │ │ ├── 04_简单SQL查询.md │ │ ├── 05_函数.md │ │ ├── 06_连接.md │ │ ├── 07_子查询.md │ │ ├── 08_MySQL执行流程.md │ │ └── 08_MySQL锁机制.md │ ├── Linux下mysql5.7的彻底卸载.md │ ├── MYSQL performance schema详解.md │ ├── MYSQL5.7详细安装步骤.md │ ├── MySQL优化.md │ ├── Mysql调优.xmind │ ├── Tuning │ │ ├── 01_数据类型优化.md │ │ ├── 02_执行计划.md │ │ ├── 03_索引基础知识.md │ │ └── 04_索引细节知识.md │ ├── mysql主从复制原理.md │ ├── mysql主从复制安装配置.md │ ├── mysql事务测试.md │ ├── mysql执行计划.md │ ├── mysql数据结构选择.png │ ├── mysql数据结构选择.pos │ ├── mysql架构.jpg │ ├── mysql的锁机制.md │ ├── mysql索引系统 .png │ ├── mysql索引系统.pos │ ├── mysql练习题.md │ ├── mysql读写分离.md │ ├── sakila数据库说明.md │ ├── typora-user-images │ │ ├── 1570541665646.png │ │ ├── 1570541838485.png │ │ ├── 1570541946471.png │ │ ├── 1570542045332.png │ │ ├── 1570542254949.png │ │ ├── 1570542341604.png │ │ ├── 1570542415955.png │ │ ├── 1570542471948.png │ │ ├── 1570542688796.png │ │ ├── 1570604493708.png │ │ ├── 1570605309658.png │ │ ├── 1570605325400.png │ │ ├── 1570605553095.png │ │ ├── 1570703264912.png │ │ ├── 1570714549624.png │ │ ├── 1570714565647.png │ │ ├── 1570714576819.png │ │ ├── 1570714615915.png │ │ ├── 1570714660961.png │ │ ├── 1570776205802.png │ │ └── image-20191203125003597.png │ ├── 使用amoeba实现mysql读写分离.md │ ├── 分区表的底层原理.md │ ├── 前缀索引实例说明.md │ ├── 索引优化分析案例.md │ ├── 红黑树.png │ ├── 红黑树.pos │ ├── 范围分区.md │ └── 覆盖索引.md ├── 04_GameSystem │ ├── 01_COCSystem.md │ └── SLG │ │ ├── 01_SLGArchitecture.md │ │ ├── 02_SLGServer.md │ │ ├── 03_Sort.md │ │ └── 04_SLGData.md ├── 05_IMSystem.md ├── Untitled.md └── resources.md ├── 100_Other ├── 01_Golang │ ├── Go与Java.md │ ├── Go基础语法.md │ ├── Go设计模式.md │ └── Test.md ├── 01_JVM梳理.md ├── 02_Erlang │ └── 01_基础知识 └── 02_Redis梳理.md ├── 97_Pic ├── Pasted image 20220209212709.png ├── Pasted image 20220209215251.png ├── Pasted image 20220209215709.png ├── Pasted image 20220210011115.png └── Pasted image 20220220205114.png ├── 99_Test ├── 01_All │ ├── 00_ForResume.md │ ├── 00_Project.md │ ├── 01_Java.md │ ├── 02_JUC.md │ ├── 02_JUC2 │ ├── 03_MySQL.md │ ├── 04_OS.md │ ├── 05_Redis.md │ ├── 05_RedisSummary.md │ ├── 06_底层知识.md │ ├── 07_王道操作系统知识.md │ ├── 08_MQ.md │ ├── 09_Algo.md │ ├── 10_Network.md │ ├── 66_Soft.md │ └── 99_Required.md ├── 02_InterviewTest │ └── Interview.md ├── 03_AE │ ├── ForDeepRoute_G.md │ ├── HWOD.md │ ├── Haiy.md │ ├── HotorGames.md │ ├── ProjectZ.md │ ├── TaoMi.md │ ├── Tap4Fun.md │ ├── YouDao3.31.md │ ├── test.md │ ├── 万兴.md │ ├── 有可能的coding.md │ └── 有可能的场景题.md ├── ResumeTest.md ├── Tip.md ├── Untitled.md ├── test.md └── 互联网装逼词汇.md ├── README.md ├── TODO.md └── Word.md /.obsidian/app.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.obsidian/appearance.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseFontSize": 16 3 | } -------------------------------------------------------------------------------- /.obsidian/core-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/.obsidian/core-plugins.json -------------------------------------------------------------------------------- /.obsidian/hotkeys.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.obsidian/workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/.obsidian/workspace -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/17_拓扑排序.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/21_数组压缩&观察位置替代枚举行为.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/21_数组压缩&观察位置替代枚举行为.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/22_动态规划rest相关.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/22_动态规划rest相关.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/23_各种累加和.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/23_各种累加和.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/24_滑动窗口.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/24_滑动窗口.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/25_单调栈.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/25_单调栈.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/26_斐波那契举证快速幂.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/26_斐波那契举证快速幂.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/27_KMP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/27_KMP.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/28_Manacher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/28_Manacher.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/29_bfprt&pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/29_bfprt&pool.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/30_MorrisTraversal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/30_MorrisTraversal.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/31_线段树.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/31_线段树.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/32_IndexTree_AC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/17~32/32_IndexTree_AC.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/17~32/Untitled.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/1~16/01_二分法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/1~16/01_二分法.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/1~16/快排.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/1~16/快排.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/33~47/33_Hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/33~47/33_Hash.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/33~47/34_资源限制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/33~47/34_资源限制.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/33~47/39_数据量相关.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/33~47/39_数据量相关.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/33~47/40_数据量&卡特兰.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/33~47/40_数据量&卡特兰.md -------------------------------------------------------------------------------- /01_Algo/01_BasicKnowledge/33~47/43_状态压缩的动态规划.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/01_BasicKnowledge/33~47/43_状态压缩的动态规划.md -------------------------------------------------------------------------------- /01_Algo/02_forGreat/NormalGreat/22_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/02_forGreat/NormalGreat/22_.md -------------------------------------------------------------------------------- /01_Algo/02_forGreat/NormalGreat/27_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/02_forGreat/NormalGreat/27_.md -------------------------------------------------------------------------------- /01_Algo/02_forGreat/NormalGreat/46节.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/02_forGreat/NormalGreat/46节.md -------------------------------------------------------------------------------- /01_Algo/02_forGreat/NormalGreat/50_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/02_forGreat/NormalGreat/50_.md -------------------------------------------------------------------------------- /01_Algo/02_forGreat/NormalGreat/last.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/02_forGreat/NormalGreat/last.md -------------------------------------------------------------------------------- /01_Algo/03_LeetCodeTop/666.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/03_LeetCodeTop/666.md -------------------------------------------------------------------------------- /01_Algo/03_LeetCodeTop/Classic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/03_LeetCodeTop/Classic.md -------------------------------------------------------------------------------- /01_Algo/03_LeetCodeTop/Classic2.md: -------------------------------------------------------------------------------- 1 | # 6 2 | -------------------------------------------------------------------------------- /01_Algo/03_LeetCodeTop/DailyCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/03_LeetCodeTop/DailyCode.md -------------------------------------------------------------------------------- /01_Algo/03_LeetCodeTop/Hot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/03_LeetCodeTop/Hot.md -------------------------------------------------------------------------------- /01_Algo/03_LeetCodeTop/Int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/03_LeetCodeTop/Int.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java List --remove(int index)与remove(Object o)方法的区别.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java List --remove(int index)与remove(Object o)方法的区别.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java String类中的compareTo方法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java String类中的compareTo方法.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java 中String、StringBuilder和StringBuffer的区别.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java 中String、StringBuilder和StringBuffer的区别.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中ArrayList 扩容的代价.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中ArrayList 扩容的代价.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中HashMap, TreeMap 等的元素遍历顺序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中HashMap, TreeMap 等的元素遍历顺序.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中Integer包装类的的128陷阱.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中Integer包装类的的128陷阱.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中split函数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中split函数.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中位图的实现.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中位图的实现.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中容器, 堆等对加入重复值的处理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中容器, 堆等对加入重复值的处理.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中的Stack结构.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中的Stack结构.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中的值传递跟引用传递.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中的值传递跟引用传递.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中的哈希表.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中的哈希表.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中的容器, 队列, 堆栈.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中的容器, 队列, 堆栈.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中的左移, 右移操作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中的左移, 右移操作.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中的整型, 正数, 负数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中的整型, 正数, 负数.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中的有序表.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中的有序表.md -------------------------------------------------------------------------------- /01_Algo/04_Java/Java中计时用System.nanoTime().md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/Java中计时用System.nanoTime().md -------------------------------------------------------------------------------- /01_Algo/04_Java/为什么Java中String类indexof不使用KMP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/为什么Java中String类indexof不使用KMP.md -------------------------------------------------------------------------------- /01_Algo/04_Java/程序中的随机函数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/04_Java/程序中的随机函数.md -------------------------------------------------------------------------------- /01_Algo/05_Math/Anecdote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/Anecdote.md -------------------------------------------------------------------------------- /01_Algo/05_Math/判断一个数是不是质数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/判断一个数是不是质数.md -------------------------------------------------------------------------------- /01_Algo/05_Math/剃刀函数与约瑟夫环.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/剃刀函数与约瑟夫环.md -------------------------------------------------------------------------------- /01_Algo/05_Math/卡特兰数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/卡特兰数.md -------------------------------------------------------------------------------- /01_Algo/05_Math/四平方和定理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/四平方和定理.md -------------------------------------------------------------------------------- /01_Algo/05_Math/排列组合.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/排列组合.md -------------------------------------------------------------------------------- /01_Algo/05_Math/排序算法的传递性.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/排序算法的传递性.md -------------------------------------------------------------------------------- /01_Algo/05_Math/数和矩阵的N次方怎么算最快.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/数和矩阵的N次方怎么算最快.md -------------------------------------------------------------------------------- /01_Algo/05_Math/斐波那契数列.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/斐波那契数列.md -------------------------------------------------------------------------------- /01_Algo/05_Math/最大公约数 & 最小公倍数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/最大公约数 & 最小公倍数.md -------------------------------------------------------------------------------- /01_Algo/05_Math/求一个数以2为底的对数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/求一个数以2为底的对数.md -------------------------------------------------------------------------------- /01_Algo/05_Math/求最大公约数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/求最大公约数.md -------------------------------------------------------------------------------- /01_Algo/05_Math/泰勒公式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/泰勒公式.md -------------------------------------------------------------------------------- /01_Algo/05_Math/牛顿迭代法开根号.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/牛顿迭代法开根号.md -------------------------------------------------------------------------------- /01_Algo/05_Math/科学计数法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/科学计数法.md -------------------------------------------------------------------------------- /01_Algo/05_Math/稀疏矩阵及矩阵乘法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/稀疏矩阵及矩阵乘法.md -------------------------------------------------------------------------------- /01_Algo/05_Math/素数 & 质数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/素数 & 质数.md -------------------------------------------------------------------------------- /01_Algo/05_Math/素数筛法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/素数筛法.md -------------------------------------------------------------------------------- /01_Algo/05_Math/约瑟夫环.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/约瑟夫环.md -------------------------------------------------------------------------------- /01_Algo/05_Math/计算一个数的平方根.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/计算一个数的平方根.md -------------------------------------------------------------------------------- /01_Algo/05_Math/鸽笼原理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/05_Math/鸽笼原理.md -------------------------------------------------------------------------------- /01_Algo/06_Template/Dijkstra算法代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/Dijkstra算法代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/KMP算法代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/KMP算法代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/Kruskal算法代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/Kruskal算法代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/LFU内存替换算法的实现.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/LFU内存替换算法的实现.md -------------------------------------------------------------------------------- /01_Algo/06_Template/LRU内存替换算法的实现.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/LRU内存替换算法的实现.md -------------------------------------------------------------------------------- /01_Algo/06_Template/Manacher算法代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/Manacher算法代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/Morris实现中序遍历.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/Morris实现中序遍历.md -------------------------------------------------------------------------------- /01_Algo/06_Template/Morris实现前序遍历.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/Morris实现前序遍历.md -------------------------------------------------------------------------------- /01_Algo/06_Template/Morris实现后序遍历.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/Morris实现后序遍历.md -------------------------------------------------------------------------------- /01_Algo/06_Template/Morris遍历代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/Morris遍历代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/Prim算法代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/Prim算法代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/SB树代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/SB树代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/bfprt代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/bfprt代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/一个简单的Hash函数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/一个简单的Hash函数.md -------------------------------------------------------------------------------- /01_Algo/06_Template/不使用加减乘除算符实现加减乘除(仅位运算).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/不使用加减乘除算符实现加减乘除(仅位运算).md -------------------------------------------------------------------------------- /01_Algo/06_Template/两个等长有序数组求上中位数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/两个等长有序数组求上中位数.md -------------------------------------------------------------------------------- /01_Algo/06_Template/冒泡排序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/冒泡排序.md -------------------------------------------------------------------------------- /01_Algo/06_Template/单调栈代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/单调栈代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/后缀数组DC3算法实现.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/后缀数组DC3算法实现.md -------------------------------------------------------------------------------- /01_Algo/06_Template/哈希表实现前缀树.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/哈希表实现前缀树.md -------------------------------------------------------------------------------- /01_Algo/06_Template/图的拓扑排序算法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/图的拓扑排序算法.md -------------------------------------------------------------------------------- /01_Algo/06_Template/图的统一表述结构.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/图的统一表述结构.md -------------------------------------------------------------------------------- /01_Algo/06_Template/基数排序代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/基数排序代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/堆排序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/堆排序.md -------------------------------------------------------------------------------- /01_Algo/06_Template/字母表实现前缀树.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/字母表实现前缀树.md -------------------------------------------------------------------------------- /01_Algo/06_Template/字符串的全排列代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/字符串的全排列代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/完美洗牌算法代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/完美洗牌算法代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/对数器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/对数器.md -------------------------------------------------------------------------------- /01_Algo/06_Template/并查集代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/并查集代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/归并排序代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/归并排序代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/快速排序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/快速排序.md -------------------------------------------------------------------------------- /01_Algo/06_Template/怎么按对角线推导二维矩阵的格子.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/怎么按对角线推导二维矩阵的格子.md -------------------------------------------------------------------------------- /01_Algo/06_Template/手写堆代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/手写堆代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/插入排序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/插入排序.md -------------------------------------------------------------------------------- /01_Algo/06_Template/改写快排的方法求无序数组中的第k小.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/改写快排的方法求无序数组中的第k小.md -------------------------------------------------------------------------------- /01_Algo/06_Template/数组L...R范围上的累加和计算代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/数组L...R范围上的累加和计算代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/数组中离给定K值最近的子数组累加和代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/数组中离给定K值最近的子数组累加和代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/枚举所有的i行到j行的情况.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/枚举所有的i行到j行的情况.md -------------------------------------------------------------------------------- /01_Algo/06_Template/比较器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/比较器.md -------------------------------------------------------------------------------- /01_Algo/06_Template/求数组中的逆序对数量代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/求数组中的逆序对数量代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/求数组小和代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/求数组小和代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/没有小括号的表达式结果计算.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/没有小括号的表达式结果计算.md -------------------------------------------------------------------------------- /01_Algo/06_Template/线段树代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/线段树代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/荷兰国旗问题代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/荷兰国旗问题代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/计数排序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/计数排序.md -------------------------------------------------------------------------------- /01_Algo/06_Template/选择排序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/选择排序.md -------------------------------------------------------------------------------- /01_Algo/06_Template/长方形中任意矩阵的累加和代码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/长方形中任意矩阵的累加和代码.md -------------------------------------------------------------------------------- /01_Algo/06_Template/随机生成双向链表.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/06_Template/随机生成双向链表.md -------------------------------------------------------------------------------- /01_Algo/GenerateForTest/ACMMod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/GenerateForTest/ACMMod.md -------------------------------------------------------------------------------- /01_Algo/GenerateForTest/Test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/GenerateForTest/Test.md -------------------------------------------------------------------------------- /01_Algo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/README.md -------------------------------------------------------------------------------- /01_Algo/Tips/FunnySolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/Tips/FunnySolution.md -------------------------------------------------------------------------------- /01_Algo/Tips/LeetCodeNote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/Tips/LeetCodeNote.md -------------------------------------------------------------------------------- /01_Algo/Tips/Tip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/Tips/Tip.md -------------------------------------------------------------------------------- /01_Algo/Tips/递归设计原则.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/Tips/递归设计原则.md -------------------------------------------------------------------------------- /01_Algo/Trick/0x3f3f3f3f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/Trick/0x3f3f3f3f.md -------------------------------------------------------------------------------- /01_Algo/Trick/最长递增子序列(LIS).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/Trick/最长递增子序列(LIS).md -------------------------------------------------------------------------------- /01_Algo/weekly/22.02.09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/weekly/22.02.09.md -------------------------------------------------------------------------------- /01_Algo/weekly/22.02.18.md: -------------------------------------------------------------------------------- 1 | # 最短花费题 2 | 3 | # 吃橘子题 4 | 5 | -------------------------------------------------------------------------------- /01_Algo/weekly/skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/weekly/skill.md -------------------------------------------------------------------------------- /01_Algo/weekly/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/01_Algo/weekly/start.md -------------------------------------------------------------------------------- /02_DesignPatterns/01_Singleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/01_Singleton.md -------------------------------------------------------------------------------- /02_DesignPatterns/02_Strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/02_Strategy.md -------------------------------------------------------------------------------- /02_DesignPatterns/03_Factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/03_Factory.md -------------------------------------------------------------------------------- /02_DesignPatterns/04_Mediator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/04_Mediator.md -------------------------------------------------------------------------------- /02_DesignPatterns/05_Decorator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/05_Decorator.md -------------------------------------------------------------------------------- /02_DesignPatterns/06_ChainOfResponsibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/06_ChainOfResponsibility.md -------------------------------------------------------------------------------- /02_DesignPatterns/07_Observer.md: -------------------------------------------------------------------------------- 1 | # 观察者模式 2 | 3 | Obverser 4 | 5 | Listener 6 | 7 | Hook 8 | 9 | Callback 10 | 11 | 12 | 13 | 具体实现 14 | 15 | -------------------------------------------------------------------------------- /02_DesignPatterns/08_Composite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/08_Composite.md -------------------------------------------------------------------------------- /02_DesignPatterns/09_Flyweight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/09_Flyweight.md -------------------------------------------------------------------------------- /02_DesignPatterns/10_Proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/10_Proxy.md -------------------------------------------------------------------------------- /02_DesignPatterns/11_Iterator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/11_Iterator.md -------------------------------------------------------------------------------- /02_DesignPatterns/12_Visitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/12_Visitor.md -------------------------------------------------------------------------------- /02_DesignPatterns/13_Builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/13_Builder.md -------------------------------------------------------------------------------- /02_DesignPatterns/14_Adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/14_Adapter.md -------------------------------------------------------------------------------- /02_DesignPatterns/15_Bridge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/15_Bridge.md -------------------------------------------------------------------------------- /02_DesignPatterns/16_Command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/16_Command.md -------------------------------------------------------------------------------- /02_DesignPatterns/17_ProtoType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/17_ProtoType.md -------------------------------------------------------------------------------- /02_DesignPatterns/18_Memento.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/18_Memento.md -------------------------------------------------------------------------------- /02_DesignPatterns/19_TemplateMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/19_TemplateMethod.md -------------------------------------------------------------------------------- /02_DesignPatterns/20_State.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/20_State.md -------------------------------------------------------------------------------- /02_DesignPatterns/21_Interpreter.md: -------------------------------------------------------------------------------- 1 | # Intepreter脚本语言解释器 2 | 3 | -------------------------------------------------------------------------------- /02_DesignPatterns/22_总结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/02_DesignPatterns/22_总结.md -------------------------------------------------------------------------------- /03_JavaWeb/01_JavaWeb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/03_JavaWeb/01_JavaWeb.md -------------------------------------------------------------------------------- /03_JavaWeb/01_SpringBoot/SpringBootNote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/03_JavaWeb/01_SpringBoot/SpringBootNote.md -------------------------------------------------------------------------------- /03_JavaWeb/02_MyBatis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/03_JavaWeb/02_MyBatis.md -------------------------------------------------------------------------------- /03_JavaWeb/03_SpringMVC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/03_JavaWeb/03_SpringMVC.md -------------------------------------------------------------------------------- /03_JavaWeb/04_SpringBoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/03_JavaWeb/04_SpringBoot.md -------------------------------------------------------------------------------- /03_JavaWeb/Mybatis核心流程图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/03_JavaWeb/Mybatis核心流程图.png -------------------------------------------------------------------------------- /03_JavaWeb/indexTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/03_JavaWeb/indexTree.png -------------------------------------------------------------------------------- /04_JUC/BytecodeInstruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/04_JUC/BytecodeInstruction.png -------------------------------------------------------------------------------- /04_JUC/JUC_1.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # ==多线程与高并发== 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /04_JUC/JVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/04_JUC/JVM.png -------------------------------------------------------------------------------- /04_JUC/JVM脑图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/04_JUC/JVM脑图.png -------------------------------------------------------------------------------- /04_JUC/System_IO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/04_JUC/System_IO.png -------------------------------------------------------------------------------- /04_JUC/多线程与高并发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/04_JUC/多线程与高并发.md -------------------------------------------------------------------------------- /04_JUC/常见面试问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/04_JUC/常见面试问题.md -------------------------------------------------------------------------------- /05_JVM/Test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/05_JVM/Test.md -------------------------------------------------------------------------------- /06_Middleware/01_Redis/01Redis前无古人后无来者.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/01_Redis/01Redis前无古人后无来者.jpg -------------------------------------------------------------------------------- /06_Middleware/01_Redis/02REDIS集群知识点.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/01_Redis/02REDIS集群知识点.jpg -------------------------------------------------------------------------------- /06_Middleware/01_Redis/ProcessOn.md: -------------------------------------------------------------------------------- 1 | 笔记基本上在流程图记录 2 | 3 | https://www.processon.com/view/link/61c347f01efad45a2b3e0fb7 4 | 5 | -------------------------------------------------------------------------------- /06_Middleware/01_Redis/RedisNote/01.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06_Middleware/01_Redis/RedisNote/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/01_Redis/RedisNote/02.md -------------------------------------------------------------------------------- /06_Middleware/01_Redis/RedisSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/01_Redis/RedisSummary.md -------------------------------------------------------------------------------- /06_Middleware/01_Redis/RedisUse/01_Jmeter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/01_Redis/RedisUse/01_Jmeter.md -------------------------------------------------------------------------------- /06_Middleware/01_Redis/RedisUse/02_redis思路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/01_Redis/RedisUse/02_redis思路.md -------------------------------------------------------------------------------- /06_Middleware/02_ZooKeeper/ZKTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/02_ZooKeeper/ZKTest.md -------------------------------------------------------------------------------- /06_Middleware/02_ZooKeeper/ZOOKEEPER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/02_ZooKeeper/ZOOKEEPER.png -------------------------------------------------------------------------------- /06_Middleware/03_Nginx/Load Blalancing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/03_Nginx/Load Blalancing.md -------------------------------------------------------------------------------- /06_Middleware/04_SkyWalking/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/04_SkyWalking/basic.md -------------------------------------------------------------------------------- /06_Middleware/Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/Git.md -------------------------------------------------------------------------------- /06_Middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/06_Middleware/README.md -------------------------------------------------------------------------------- /07_Network/01_计算机网络基础知识.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/07_Network/01_计算机网络基础知识.md -------------------------------------------------------------------------------- /07_Network/02_OAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/07_Network/02_OAuth.md -------------------------------------------------------------------------------- /07_Network/03_加密算法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/07_Network/03_加密算法.md -------------------------------------------------------------------------------- /07_Network/04_socket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/07_Network/04_socket.md -------------------------------------------------------------------------------- /08_OS/IO.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08_OS/Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/08_OS/Linux.md -------------------------------------------------------------------------------- /09_SystemDesign/01_Legend of Hero/00_BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/01_Legend of Hero/00_BUG.md -------------------------------------------------------------------------------- /09_SystemDesign/01_Legend of Hero/00_LOH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/01_Legend of Hero/00_LOH.md -------------------------------------------------------------------------------- /09_SystemDesign/01_Legend of Hero/01_LOHSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/01_Legend of Hero/01_LOHSummary.md -------------------------------------------------------------------------------- /09_SystemDesign/01_Legend of Hero/02_ProtoBuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/01_Legend of Hero/02_ProtoBuf.md -------------------------------------------------------------------------------- /09_SystemDesign/01_Legend of Hero/03_ChannelPipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/01_Legend of Hero/03_ChannelPipeline.md -------------------------------------------------------------------------------- /09_SystemDesign/01_Legend of Hero/04_CmdHandlerFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/01_Legend of Hero/04_CmdHandlerFactory.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/00_设计中重要的点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/00_设计中重要的点.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/00_需求.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/00_需求.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/01_项目概述-需求分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/01_项目概述-需求分析.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/02_服务拆分-接口设计.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/02_服务拆分-接口设计.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/03_工程设计-eureka优化_01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/03_工程设计-eureka优化_01.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/04-eureka-server源码-服务测算.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/04-eureka-server源码-服务测算.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/05_用户登陆&验证码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/05_用户登陆&验证码.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/06_order&计价.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/06_order&计价.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/10_派单逻辑.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/10_派单逻辑.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/11_订单状态.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/11_订单状态.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/12_其他.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/12_其他.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/13_灰度发布.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/13_灰度发布.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/14_zuul工作中的问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/14_zuul工作中的问题.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/15_网约车坐标系问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/15_网约车坐标系问题.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/16_2pc3pc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/16_2pc3pc.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/23-tcc .md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/23-tcc .md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/27-seata落地.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/27-seata落地.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/29-rocket总结-分布式事务总结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/29-rocket总结-分布式事务总结.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/30-大纲 技术点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/30-大纲 技术点.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/99_数据库设计.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/99_数据库设计.md -------------------------------------------------------------------------------- /09_SystemDesign/02_Taxi/eureka源码结构.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/02_Taxi/eureka源码结构.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/09-mysql架构.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/09-mysql架构.pdf -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/BasicKnowledge/00_Tip.md: -------------------------------------------------------------------------------- 1 | # 主键是自然有索引的😂 -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/BasicKnowledge/01_数据类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/BasicKnowledge/01_数据类型.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/BasicKnowledge/02_修改数据code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/BasicKnowledge/02_修改数据code.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/BasicKnowledge/03_完整性约束.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/BasicKnowledge/03_完整性约束.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/BasicKnowledge/04_简单SQL查询.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/BasicKnowledge/04_简单SQL查询.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/BasicKnowledge/05_函数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/BasicKnowledge/05_函数.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/BasicKnowledge/06_连接.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/BasicKnowledge/06_连接.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/BasicKnowledge/07_子查询.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/BasicKnowledge/07_子查询.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/BasicKnowledge/08_MySQL执行流程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/BasicKnowledge/08_MySQL执行流程.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/BasicKnowledge/08_MySQL锁机制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/BasicKnowledge/08_MySQL锁机制.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/Linux下mysql5.7的彻底卸载.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/Linux下mysql5.7的彻底卸载.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/MYSQL performance schema详解.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/MYSQL performance schema详解.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/MYSQL5.7详细安装步骤.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/MYSQL5.7详细安装步骤.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/MySQL优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/MySQL优化.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/Mysql调优.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/Mysql调优.xmind -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/Tuning/01_数据类型优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/Tuning/01_数据类型优化.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/Tuning/02_执行计划.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/Tuning/02_执行计划.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/Tuning/03_索引基础知识.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/Tuning/03_索引基础知识.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/Tuning/04_索引细节知识.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/Tuning/04_索引细节知识.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql主从复制原理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql主从复制原理.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql主从复制安装配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql主从复制安装配置.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql事务测试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql事务测试.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql执行计划.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql执行计划.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql数据结构选择.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql数据结构选择.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql数据结构选择.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql数据结构选择.pos -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql架构.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql架构.jpg -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql的锁机制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql的锁机制.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql索引系统 .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql索引系统 .png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql索引系统.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql索引系统.pos -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql练习题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql练习题.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/mysql读写分离.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/mysql读写分离.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/sakila数据库说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/sakila数据库说明.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570541665646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570541665646.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570541838485.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570541838485.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570541946471.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570541946471.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570542045332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570542045332.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570542254949.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570542254949.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570542341604.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570542341604.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570542415955.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570542415955.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570542471948.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570542471948.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570542688796.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570542688796.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570604493708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570604493708.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570605309658.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570605309658.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570605325400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570605325400.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570605553095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570605553095.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570703264912.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570703264912.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570714549624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570714549624.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570714565647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570714565647.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570714576819.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570714576819.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570714615915.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570714615915.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570714660961.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570714660961.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/1570776205802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/1570776205802.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/typora-user-images/image-20191203125003597.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/typora-user-images/image-20191203125003597.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/使用amoeba实现mysql读写分离.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/使用amoeba实现mysql读写分离.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/分区表的底层原理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/分区表的底层原理.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/前缀索引实例说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/前缀索引实例说明.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/索引优化分析案例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/索引优化分析案例.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/红黑树.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/红黑树.png -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/红黑树.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/红黑树.pos -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/范围分区.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/范围分区.md -------------------------------------------------------------------------------- /09_SystemDesign/03_MySQL/覆盖索引.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/03_MySQL/覆盖索引.md -------------------------------------------------------------------------------- /09_SystemDesign/04_GameSystem/01_COCSystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/04_GameSystem/01_COCSystem.md -------------------------------------------------------------------------------- /09_SystemDesign/04_GameSystem/SLG/01_SLGArchitecture.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_SystemDesign/04_GameSystem/SLG/02_SLGServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/04_GameSystem/SLG/02_SLGServer.md -------------------------------------------------------------------------------- /09_SystemDesign/04_GameSystem/SLG/03_Sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/04_GameSystem/SLG/03_Sort.md -------------------------------------------------------------------------------- /09_SystemDesign/04_GameSystem/SLG/04_SLGData.md: -------------------------------------------------------------------------------- 1 | # SLG手游Java服务器数据管理 2 | 3 | https://www.cnblogs.com/hjcenry/p/5856941.html -------------------------------------------------------------------------------- /09_SystemDesign/05_IMSystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/05_IMSystem.md -------------------------------------------------------------------------------- /09_SystemDesign/Untitled.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /09_SystemDesign/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/09_SystemDesign/resources.md -------------------------------------------------------------------------------- /100_Other/01_Golang/Go与Java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/100_Other/01_Golang/Go与Java.md -------------------------------------------------------------------------------- /100_Other/01_Golang/Go基础语法.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /100_Other/01_Golang/Go设计模式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/100_Other/01_Golang/Go设计模式.md -------------------------------------------------------------------------------- /100_Other/01_Golang/Test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/100_Other/01_Golang/Test.md -------------------------------------------------------------------------------- /100_Other/01_JVM梳理.md: -------------------------------------------------------------------------------- 1 | new => -------------------------------------------------------------------------------- /100_Other/02_Erlang/01_基础知识: -------------------------------------------------------------------------------- 1 | # Erlang 2 | 3 | 上帝说: 要有一门面向未来的语言, 于是有了erlang 4 | https://zhuanlan.zhihu.com/p/26341437 -------------------------------------------------------------------------------- /100_Other/02_Redis梳理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/100_Other/02_Redis梳理.md -------------------------------------------------------------------------------- /97_Pic/Pasted image 20220209212709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/97_Pic/Pasted image 20220209212709.png -------------------------------------------------------------------------------- /97_Pic/Pasted image 20220209215251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/97_Pic/Pasted image 20220209215251.png -------------------------------------------------------------------------------- /97_Pic/Pasted image 20220209215709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/97_Pic/Pasted image 20220209215709.png -------------------------------------------------------------------------------- /97_Pic/Pasted image 20220210011115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/97_Pic/Pasted image 20220210011115.png -------------------------------------------------------------------------------- /97_Pic/Pasted image 20220220205114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/97_Pic/Pasted image 20220220205114.png -------------------------------------------------------------------------------- /99_Test/01_All/00_ForResume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/00_ForResume.md -------------------------------------------------------------------------------- /99_Test/01_All/00_Project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/00_Project.md -------------------------------------------------------------------------------- /99_Test/01_All/01_Java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/01_Java.md -------------------------------------------------------------------------------- /99_Test/01_All/02_JUC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/02_JUC.md -------------------------------------------------------------------------------- /99_Test/01_All/02_JUC2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/02_JUC2 -------------------------------------------------------------------------------- /99_Test/01_All/03_MySQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/03_MySQL.md -------------------------------------------------------------------------------- /99_Test/01_All/04_OS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/04_OS.md -------------------------------------------------------------------------------- /99_Test/01_All/05_Redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/05_Redis.md -------------------------------------------------------------------------------- /99_Test/01_All/05_RedisSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/05_RedisSummary.md -------------------------------------------------------------------------------- /99_Test/01_All/06_底层知识.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/06_底层知识.md -------------------------------------------------------------------------------- /99_Test/01_All/07_王道操作系统知识.md: -------------------------------------------------------------------------------- 1 | # 王道考研操作系统知识点整理 2 | 3 | https://wizardforcel.gitbooks.io/wangdaokaoyan-os/content/24.html 4 | 5 | -------------------------------------------------------------------------------- /99_Test/01_All/08_MQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/08_MQ.md -------------------------------------------------------------------------------- /99_Test/01_All/09_Algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/09_Algo.md -------------------------------------------------------------------------------- /99_Test/01_All/10_Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/10_Network.md -------------------------------------------------------------------------------- /99_Test/01_All/66_Soft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/66_Soft.md -------------------------------------------------------------------------------- /99_Test/01_All/99_Required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/01_All/99_Required.md -------------------------------------------------------------------------------- /99_Test/02_InterviewTest/Interview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/02_InterviewTest/Interview.md -------------------------------------------------------------------------------- /99_Test/03_AE/ForDeepRoute_G.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/ForDeepRoute_G.md -------------------------------------------------------------------------------- /99_Test/03_AE/HWOD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/HWOD.md -------------------------------------------------------------------------------- /99_Test/03_AE/Haiy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/Haiy.md -------------------------------------------------------------------------------- /99_Test/03_AE/HotorGames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/HotorGames.md -------------------------------------------------------------------------------- /99_Test/03_AE/ProjectZ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/ProjectZ.md -------------------------------------------------------------------------------- /99_Test/03_AE/TaoMi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/TaoMi.md -------------------------------------------------------------------------------- /99_Test/03_AE/Tap4Fun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/Tap4Fun.md -------------------------------------------------------------------------------- /99_Test/03_AE/YouDao3.31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/YouDao3.31.md -------------------------------------------------------------------------------- /99_Test/03_AE/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/test.md -------------------------------------------------------------------------------- /99_Test/03_AE/万兴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/万兴.md -------------------------------------------------------------------------------- /99_Test/03_AE/有可能的coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/有可能的coding.md -------------------------------------------------------------------------------- /99_Test/03_AE/有可能的场景题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/03_AE/有可能的场景题.md -------------------------------------------------------------------------------- /99_Test/ResumeTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/ResumeTest.md -------------------------------------------------------------------------------- /99_Test/Tip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/Tip.md -------------------------------------------------------------------------------- /99_Test/Untitled.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /99_Test/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/test.md -------------------------------------------------------------------------------- /99_Test/互联网装逼词汇.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/99_Test/互联网装逼词汇.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/TODO.md -------------------------------------------------------------------------------- /Word.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomeyi/Notes/HEAD/Word.md --------------------------------------------------------------------------------