File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ Python Sorted Containers
7
7
* Review implementation page
8
8
* Review development page
9
9
* Re-run performance benchmarks
10
+ * Replace bintrees in
11
+ * Document migrating bintrees insert to soco
12
+ * https://github.com/astropy/astropy
13
+ * https://github.com/netzob/netzob
14
+ * https://github.com/danpaquin/gdax-python
15
+ * https://github.com/dyn4mik3/OrderBook/
10
16
* Rename github repo
11
17
* Tell Doug Hellmann about Sorted Containers and relation to bisect module
12
18
@@ -46,7 +52,7 @@ In Python, we can do better. And we can do it in pure-Python!
46
52
2
47
53
48
54
All of the operations shown above run in faster than linear time. The above
49
- demo also take nearly a gigabyte of memory to run. When the sorted list is
55
+ demo also takes nearly a gigabyte of memory to run. When the sorted list is
50
56
multiplied by ten million, it stores ten million references to each of "a"
51
57
through "e". Each reference requires eight bytes in the sorted
52
58
container. That's pretty hard to beat as it's the cost of a pointer to each
You can’t perform that action at this time.
0 commit comments