Haskell collections with guaranteed worst-case bounds for every single operation?

前端 未结 1 872
时光说笑
时光说笑 2021-02-20 06:02

Such structures are necessary for real-time applications - for example user interfaces. (Users don\'t care if clicking a button takes 0.1s or 0.2s, but they do care if the 100th

相关标签:
1条回答
  • 2021-02-20 06:41

    there is nothing about (possible) strictness of its structure.

    Go looking for the source, e.g. for Data.Map.Map

    -- See Note: Order of constructors
    data Map k a  = Bin {-# UNPACK #-} !Size !k a !(Map k a) !(Map k a)
                  | Tip
    

    You see that a Map is totally spine-strict (and strict in the keys, even with Data.Map.Lazy), if you evaluate it to WHNF, the complete spine is forced. The same holds for IntMaps, Sets and IntSets.

    So you can prevent the construction of large thunks (except for the mapped-to/contained values) easily by forcing the container to WHNF before every operation. The prevention of large thunks for the contained values [a common cause for time (and space) leaks] is automatic for the Data.XYZ.Strict variants (caveat: the values are only evaluated to WHNF, if you need more, you have to do it yourself by e.g. deepseqing any changed values immediatley after the operation), something you need to handle yourself with the Data.XYZ.Lazy variants.

    Thus

    Users don't care if clicking a button takes 0.1s or 0.2s, but they do care if the 100th click forces an outstanding lazy computation and takes 10s to proceed.

    is an easily avoided problem with these containers.

    However, it could still be that the 100th click takes much longer to process than the average, not due to outstanding lazy computations, but due to the algorithm (consider the classic queue implementation with two lists, the front, where you dequeue elements by dequeue (Q (x:xs) ys) = (x, Q xs ys) in O(1), and the back where you enqueue y (Q xs ys) = Q xs (y:ys) in O(1), well, except that dequeuing takes O(size) when the front list is empty and the back needs to be reversed first, but it's O(1) amortized still) without changing the amortized cost.

    I don't know if the algorithms used in containers have any such cases, but it's something to be aware of.

    0 讨论(0)
提交回复
热议问题