-
All time bounds are amortized (as in the Hinze/Paterson paper) but API docs mention that word only once "An amortized running time is given for each operation". A casual reader might miss that, especi…
-
It seems `dequeue`s are not amortized O(1) when both `unsnoc` and `uncons` are called; in fact, the underlying two lists might "oscillate" such that the operations are amortized O(n). When only one of…
-
Hello
From the docs in 12.3:
> O(1)* means 'amortised O(1),' which means that an operation usually runs in constant time but will occasionally be more expensive: for instance, Vector::push_back,…
-
1. The `hight` (height) function should be deleted, it was only used for debugging. (used in printing)
2. We should add to all methods an amortized complexity, even if it's the same as the w.c..
3. …
Onoam updated
5 years ago
-
Hi
i use your azure cost report, but i would like to use € currency instead of $
how can i change it, because in the currency code is it Euro, but in visuel we see $
-
After a lot of discussion with Aljoscha last week I have decided to implement the willow store roughly as proposed in https://github.com/AljoschaMeyer/kv_3d_storage
TLDR: this has the upside that i…
-
For example if I want to convert following code to a pdf
`# Solution
A good choice is $k=2n$. This means that an array with twice the size of the original array is created, if the original array i…
-
Hello,
I have been reading Cython's documentation lately, and I fell on maybe a little mistake on ["Working with Python arrays"](http://docs.cython.org/en/latest/src/tutorial/array.html). In the AP…
-
### Proposed Change
A materialized view is a common concept in Database Management Systems that stores a query definition as a logical table. The query is precomputed and the resulting data is serv…
-
### Description
The FOCUS spec often refers to Amortization in a number of places and each time it provides a description of what Amortization is, but the exact definition has felt ambiguous to reade…