Haskell:递归问题

时间:2011-03-16 20:12:47

标签: text haskell recursion justify

我正在尝试将文本格式化为矩形;目前我已经能够正确地左对齐,但最后一行并没有尽可能延伸。

我正在尝试计算最佳字段宽度,以便最小化或完全删除它。

我完全陷入困境。以下代码显示了相关功能。目前它陷入无限循环。 我哪里错了?

另一方面,调试Haskell代码的最佳方法是什么? (是的,我对此很新。)

optimalFieldWidth应该比较行长度,直到顶行的长度等于底行的长度,然后返回字段宽度,这将导致它为真。

module Main where

import System
import Data.List

main = do 
  (f:_) <- getArgs
  xs <- getContents
  putStr (show (bestFieldWidth maxLineLength xs))

bestFieldWidth :: Int -> String -> Int
bestFiledWidth _ [] = 0
bestFieldWidth lineLength xs
  | length (last input) == length (head input) = lineLength
  | otherwise = bestFieldWidth (length (head (rect (lineLength-1) xs))) xs
  where input = lines xs

rect :: Int -> String -> [String]
rect _ [] = []
rect lineLength xs
  | length input <= len = [input]
  | otherwise           = take len input : rect len (drop len input)
  where input = trim xs
        len   = bestFieldWidth lineLength xs

maxLineLength :: Int
maxLineLength = 40

所有回复都表示赞赏。谢谢。

3 个答案:

答案 0 :(得分:1)

我以为我会把实际的解决方案放在这里以防任何其他疯子希望这样做。 请记住它是由一个白痴写的,所以它可能不是最优雅的解决方案。

maxFieldWidth :: Int
maxFieldWidth = 30

rect :: String -> String
rect xs  = (unlines (chunk (bestFieldWidth (maxFieldWidth) (lines input)) input))
  where input = itemsReplace '\n' ' ' xs

--Should be called with the point maximum desired width as n
bestFieldWidth :: Int -> [String] -> Int
bestFieldWidth _ [] = error "bestFieldWidth: Empty List"
bestFieldWidth n xs
  | n == 6 = 6
  | 1 == (length (last input)) = n
  | otherwise = (bestFieldWidth (n-1) xs)
  where input = chunk n (unlines xs)

chunk :: Int -> [a] -> [[a]]
chunk n [] = []
chunk n xs = ys : chunk n zs
  where (ys,zs) = splitAt n xs

itemsReplace :: Eq a => a -> a -> [a] -> [a]
itemsReplace _ _ [] = []
itemsReplace c r (x:xs)
  | c == x    = r:itemsReplace c r xs
  | otherwise = x:itemsReplace c r xs

答案 1 :(得分:0)

length (last input) == length (head input)的后续调用中,条件area似乎永远不会成为现实,因此使此函数始终采用otherwise分支,并使用相同的值无限期地调用自身xs因此input

可能的原因是您使用lines函数,该函数以不依赖于lineLength的方式拆分带换行符的字符串,并且与{{1中的行拆分不一致功能。

答案 2 :(得分:0)

回答您的旁注,这是调试Haskell的优秀指南:http://cgi.cse.unsw.edu.au/~dons/blog/2007/11/14

还有Debug.Trace,它允许您插入print语句。它当然应该只在调试时使用,因为它会使你的函数产生副作用。

http://hackage.haskell.org/packages/archive/base/latest/doc/html/Debug-Trace.html