Skip to content

Instantly share code, notes, and snippets.

@jhickner
Created March 6, 2013 09:25
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhickner/5098031 to your computer and use it in GitHub Desktop.
Save jhickner/5098031 to your computer and use it in GitHub Desktop.
import Data.Ord (comparing)
import Data.Function (on)
import Data.List (groupBy)
type Point = (Int, Int)
points :: [Point]
points = [ (0, 1)
, (0, 2)
, (0, 2)
, (0, 2)
, (0, 3)
, (0, 2)
, (0, 1)
, (0, 0)
, (0, 5)
, (0, 3)
, (0, 6)
, (0, -3)
]
-- | compare each successive pair of (x,y) points
-- and output their ordering - LT, GT or EQ
-- ex: ySlope points = [GT,EQ,EQ,GT,LT,LT,LT,GT,LT,GT,LT]
ySlope :: [Point] -> [Ordering]
ySlope ps = zipWith (comparing snd) (drop 1 ps) ps
-- | given a list of points, output an (index, ordering) pair
-- each time the ySlope changes
-- ex: changes points = [(1,GT),(2,EQ),(4,GT),(5,LT),(8,GT),(9,LT),(10,GT),(11,LT)]
changes :: [Point] -> [(Int, Ordering)]
changes = map head . groupBy ((==) `on` snd) . zip [1..] . ySlope
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment