Skip to content

Commit a6a813d

Browse files
authored
Update README.md
1 parent 0fa78e6 commit a6a813d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The CompressedStacks.cpp module/library implements the compressed stack structure. This data structure behaves like a usual stack with the usual push and pop operations, but has the additional advantage that it uses less memory. Intuitively, when large blocks of information are pushed into the stack it *compresses* the bottom part (only stores partial information). This information is recomputed whenever it is needed afterwards. See the paper of [Barba *et al.*](https://arxiv.org/abs/1208.3663) for more details on this structure.
44

5-
Please consult the [wiki](https://github.com/Azzaare/CompressedStacks.cpp.wiki) of this project for further details such as : speed and memory consumption tests, more details about installation, examples, and more.
5+
Please consult the [wiki](https://github.com/Azzaare/CompressedStacks.cpp/wiki) of this project for further details such as : speed and memory consumption tests, more details about installation, examples, and more.
66

77
## Description of Stack Algorithms
88
<p>
@@ -35,7 +35,7 @@ template <class T, class D> void StackAlgo<T, D>::run() {
3535
}
3636
```
3737
## Use case
38-
Concrete examples such as a basic test run and the convex hull problem can be found in the [wiki](https://github.com/Azzaare/CompressedStacks.cpp.wiki).
38+
Concrete examples such as a basic test run and the convex hull problem can be found in the [wiki](https://github.com/Azzaare/CompressedStacks.cpp/wiki).
3939
4040
### Abstract example : ```Instance<T,D,I>```
4141
<p>An instance of a Stack Algorithm is described by a set of templates parameters T, D, and I and a set of methods used in the run function above.</p>

0 commit comments

Comments
 (0)