If I expect a string with space separated ints from user input (number of expected int's known), I can transfer it in haskell Data.Vector like this:
main = do
n <- readLn -- this is number of ints
l' <- getLine
let a = (read :: String -> Int) <$> words l'
return $ V.fromList a
But I want to do this as fast as possible, w/o intermediate list, what is a fastest way to construct Vector in this case?
ps. I am think about looping getChar + replicateM but not shure will it be faster or not.
The following should be pretty fast.
Note that this version does no input validation. It just parses runs of digits separated by single non-digit delimiters, and it'll misread repeated delimiters as additional zero values.
Compiled with GHC 8.10.4 on my machine, it processes about half a gigabyte per second and outperforms a similar GCC-compiled C version by about 10%, which is a little suspect, but I don't see anything obviously wrong with my C version: