@@ -139,6 +139,19 @@ export default navbar([
139139 text : "进阶之路" ,
140140 icon : "win" ,
141141 children : [
142+ {
143+ text : "海量数据" ,
144+ children : [
145+ { text : "统计不同号码的个数" , link : "/mass-data/1-count-phone-num.md" } ,
146+ { text : "出现频率最高的100个词" , link : "/mass-data/2-find-hign-frequency-word.md" } ,
147+ { text : "查找两个大文件共同的URL" , link : "/mass-data/3-find-same-url.md" } ,
148+ { text : "如何在100亿数据中找到中位数?" , link : "/mass-data/4-find-mid-num.md" } ,
149+ { text : "如何查询最热门的查询串?" , link : "/mass-data/5-find-hot-string.md" } ,
150+ { text : "如何找出排名前 500 的数?" , link : "/mass-data/6-top-500-num.md" } ,
151+ { text : "如何按照 query 的频度排序?" , link : "/mass-data/7-query-frequency-sort.md" } ,
152+ { text : "大数据中 TopK 问题的常用套路" , link : "/mass-data/8-topk-template.md" } ,
153+ ]
154+ } ,
142155 {
143156 text : "系统设计" ,
144157 //link: "/advance/system-design/README.md",
@@ -150,8 +163,8 @@ export default navbar([
150163 // {text: "单点登录设计与实现", link: "/advance/system-design/8-sso-design.md"},
151164 //]
152165 children : [
153- { text : "扫码登录设计" , link : "/advance/system-design/README .md" } ,
154- { text : "超时订单自动取消" , link : "/advance/system-design/README .md" } ,
166+ { text : "扫码登录设计" , link : "/advance/system-design/1-scan-code-login .md" } ,
167+ { text : "超时订单自动取消" , link : "/advance/system-design/2-order-timeout-auto-cancel .md" } ,
155168 { text : "短链系统设计" , link : "/advance/system-design/README.md" } ,
156169 { text : "微信红包系统如何设计?" , link : "/advance/system-design/README.md" } ,
157170 { text : "单点登录设计与实现" , link : "/advance/system-design/README.md" } ,
@@ -163,19 +176,6 @@ export default navbar([
163176 { text : "如何设计一个高并发系统?" , link : "/advance/system-design/README.md" } ,
164177 { text : "10w级别数据Excel导入怎么优化?" , link : "/advance/system-design/README.md" } ,
165178 ]
166- } ,
167- {
168- text : "海量数据" ,
169- children : [
170- { text : "统计不同号码的个数" , link : "/mass-data/1-count-phone-num.md" } ,
171- { text : "出现频率最高的100个词" , link : "/mass-data/2-find-hign-frequency-word.md" } ,
172- { text : "查找两个大文件共同的URL" , link : "/mass-data/3-find-same-url.md" } ,
173- { text : "如何在100亿数据中找到中位数?" , link : "/mass-data/4-find-mid-num.md" } ,
174- { text : "如何查询最热门的查询串?" , link : "/mass-data/5-find-hot-string.md" } ,
175- { text : "如何找出排名前 500 的数?" , link : "/mass-data/6-top-500-num.md" } ,
176- { text : "如何按照 query 的频度排序?" , link : "/mass-data/7-query-frequency-sort.md" } ,
177- { text : "大数据中 TopK 问题的常用套路" , link : "/mass-data/8-topk-template.md" } ,
178- ]
179179 } ,
180180 {
181181 text : "分布式" ,
0 commit comments