
24 Feb
2012
24 Feb
'12
2:16 a.m.
Looking at IntMap's left-biased 'union' function [1], I noticed that the complexity is O(n+m) where n is the size of the left map, and m is the size of the right map. Since insertion [2] is O(min(n, W)) [ where W is the number of bits in an Int ], wouldn't it be more efficient to just fold 'insert' over one of the lists for a complexity of O(m*min(n, W))? This would degrade into O(m) in the worst case, as opposed to the current O(n+m). Or am I just crazy? Regards, - clark [1] http://hackage.haskell.org/packages/archive/containers/0.4.2.1/doc/html/Data... [2] http://hackage.haskell.org/packages/archive/containers/0.4.2.1/doc/html/Data...