For cheap operations like "append" on lists (not character strings) i would use Data.DList. What holds me back is that the package on Hackage is marked "experimental" and the last update was in 2009.
Is DList still the way to go for that in Haskell?
EDIT: Clarified that i am interested in operations like "append". EDIT2: Fixed 2007 -> 2009.
append x y = undefined, it's very fast. :) So I assume you want to do something after you have constructed the list. Once you tell us what that is we can give you advice. – augustss Aug 19 '11 at 12:41