Unverified Commit 31a8cb1a authored by ir1d's avatar ir1d Committed by GitHub
Browse files

Merge pull request #220 from Ir1d/master

修改之前搬运的时候疏忽之处,以及去掉数据结构部分的分级
parents 52aaaffa 37c250d2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -73,6 +73,8 @@ chmod +x ./build.sh && sed -i "s/mkdocs build/mkdocs serve/g" build.sh && ./buil

特别感谢 [24OI](https://github.com/24OI) 的朋友们的大力支持!

<a href="graphs/contributors"><img src="https://opencollective.com/oi-wiki/contributors.svg?width=890" /></a>

----

## 版权声明
+2 −4
Original line number Diff line number Diff line
@@ -157,9 +157,7 @@ $p[i]$ 表示从 $i$ 向两侧延伸(当然要保证两侧对应位置相等

好像出成了某一年程设期末。

upd:其实是[推荐练习](/2018/06/23/cssx/程设期末推荐练习/)里面的。

off-topic:惊了,原来 hexo 内链是可以这么写的:`{% post_link cssx/程设期末推荐练习 %}`
upd:其实是[程设期末推荐练习](https://ir1d.cf/2018/06/23/cssx/程设期末推荐练习/)里面的。

<!-- upd:其实是 {% post_link cssx/程设期末推荐练习 %} 里面的 -->

@@ -212,7 +210,7 @@ $dp[i][j] = \min(dp[i][k] + dis[k][j], dp[k][j] + dis[i][k])$

注意到实际问题要求单词不能打乱顺序,所以就好做了起来。

`## 论不要把题目看复杂`
**论不要把题目看复杂**

$dp[i] = \min(dp[j] + cost[j][i])$

+33 −36
Original line number Diff line number Diff line
@@ -111,7 +111,6 @@ nav:
    - 数据结构部分简介: ds/index.md
    - STL: ds/stl.md
    - pb_ds: ds/pb-ds.md
    - 基础数据结构:
    - : ds/stack.md
    - 队列: ds/queue.md
    - 链表: ds/linked-list.md
@@ -121,7 +120,6 @@ nav:
    - 分块: ds/square-root-decomposition.md
    - 单调栈: ds/monotonous-stack.md
    - 单调队列: ds/monotonous-queue.md
    - 中级数据结构:
    - 倍增法: ds/sparse-table.md
    - 块状链表: ds/block-list.md
    - 块状数组: ds/block-array.md
@@ -132,7 +130,6 @@ nav:
    - Splay: ds/splay.md
    - 替罪羊树: ds/scapegoat.md
    - 虚树: ds/virtual-tree.md
    - 高级数据结构:
    - 树套树:
      - 线段树套线段树: ds/seg-in-seg.md
      - 平衡树套线段树: ds/seg-in-balanced.md