OSDN Git Service

Update docs/ds/pairing-heap.md
authorXXunn <48951723+XXunn@users.noreply.github.com>
Tue, 20 Oct 2020 00:23:13 +0000 (19:23 -0500)
committerGitHub <noreply@github.com>
Tue, 20 Oct 2020 00:23:13 +0000 (19:23 -0500)
Co-authored-by: Nano <nanoapezlk@gmail.com>
docs/ds/pairing-heap.md

index c814586..5608c8a 100644 (file)
@@ -88,9 +88,7 @@ Node* delete_min(Node* x) { return merges(x->ch); }
 
 #### 减小一个元素的值
 
-要实现这个操作,需要给节点添加一个 father 指针,会使实现变得相对复杂。
-
-其中 father 指针指向前一个节点而非树形结构的父节点
+要实现这个操作,需要给节点添加一个 father 指针,其指向前一个节点而非树形结构的父节点。
 
 首先节点的定义修改为: