aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcathook <b01902109@csie.ntu.edu.tw>2014-04-24 01:34:26 +0800
committercathook <b01902109@csie.ntu.edu.tw>2014-04-24 01:34:26 +0800
commitcdd83a74b59b075a8b001634a12d2bf8e5a28e26 (patch)
tree71942f0cb4c474e2f5e9bfd25c291bd21b75e1c9
parent4867c9321df88bea09dc026cddeb33126c14dc36 (diff)
downloadmeow-cdd83a74b59b075a8b001634a12d2bf8e5a28e26.tar
meow-cdd83a74b59b075a8b001634a12d2bf8e5a28e26.tar.gz
meow-cdd83a74b59b075a8b001634a12d2bf8e5a28e26.tar.bz2
meow-cdd83a74b59b075a8b001634a12d2bf8e5a28e26.tar.lz
meow-cdd83a74b59b075a8b001634a12d2bf8e5a28e26.tar.xz
meow-cdd83a74b59b075a8b001634a12d2bf8e5a28e26.tar.zst
meow-cdd83a74b59b075a8b001634a12d2bf8e5a28e26.zip
fix readme
-rw-r--r--README.asciidoc4
-rw-r--r--README.html2
-rw-r--r--meowpp/dsa/MergeableHeap.h2
-rw-r--r--meowpp/dsa/SegmentTree.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/README.asciidoc b/README.asciidoc
index 2c48307..1d25b02 100644
--- a/README.asciidoc
+++ b/README.asciidoc
@@ -253,7 +253,7 @@ size_t `number2`)| size_t | very fast
||merge|(MergeableHeap* `heap2`)|void|O(logN+logM)
|將 `heap2` 的資料統統加到 `this` 中, 並且清空 `heap2`
時間複雜度中的M是 `heap2` 的資料數
-|==============================================
+|=====================================================================
[WARNING]
==============================================
@@ -541,7 +541,7 @@ ssize_t `last`, +
Value const& `delta`)
|void|O(logN)
|將區間 `[first,last]` 全部都加上 `delta`
-|==============================================
+|=====================================================================
'''
diff --git a/README.html b/README.html
index 7e21096..664dc3d 100644
--- a/README.html
+++ b/README.html
@@ -2464,7 +2464,7 @@ E-Mail: cat.hook31894 ~在~ gmail.com
<div id="footnotes"><hr></div>
<div id="footer">
<div id="footer-text">
-Last updated 2014-04-23 00:16:52 CST
+Last updated 2014-04-24 01:34:02 CST
</div>
</div>
</body>
diff --git a/meowpp/dsa/MergeableHeap.h b/meowpp/dsa/MergeableHeap.h
index a7215bc..ddcd8a5 100644
--- a/meowpp/dsa/MergeableHeap.h
+++ b/meowpp/dsa/MergeableHeap.h
@@ -89,7 +89,7 @@ namespace meow{
//# 時間複雜度中的M是 `heap2` 的資料數
void merge(MergeableHeap* _heap2);
- //#|==============================================
+ //#|=====================================================================
};
//#
//# [WARNING]
diff --git a/meowpp/dsa/SegmentTree.h b/meowpp/dsa/SegmentTree.h
index b9e4c64..4bed51b 100644
--- a/meowpp/dsa/SegmentTree.h
+++ b/meowpp/dsa/SegmentTree.h
@@ -104,7 +104,7 @@ namespace meow{
}
}
- //#|==============================================
+ //#|=====================================================================
};
//#
//# '''