Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6750893
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:51:43+00:00 2026-05-26T12:51:43+00:00

I am trying to build a smallish haskell app that will translate a few

  • 0

I am trying to build a smallish haskell app that will translate a few key phrases from english to french.

First, i have a list of ordered pairs of strings that represent and english word/phrase followed by the french translations:

icards = [("the", "le"),("savage", "violent"),("work", "travail"),
("wild", "sauvage"),("chance", "occasion"),("than a", "qu'un")...]

next i have a new data:

data Entry = Entry {wrd, def :: String, len :: Int, phr :: Bool}
deriving Show

then i use the icards to populate a list of Entrys:

entries :: [Entry]
entries = map (\(x, y) -> Entry x y (length x) (' ' `elem` x)) icards

for simplicity, i create a new type that will be [Entry] called Run.

Now, i want to create a hash table based on the number of characters in the english word. This will be used later to speed up searchings. So i want to create a function called runs:

runs :: [Run]
runs = --This will run through the entries and return a new [Entry] that has all of the
         words of the same length grouped together.

I also have:

maxl = maximum [len e | e <- entries]
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T12:51:43+00:00Added an answer on May 26, 2026 at 12:51 pm

    groupBy and sortBy are both in Data.List.

    import Data.List
    import Data.Function -- for `on`
    runs :: [Run]
    runs = f 0 $ groupBy ((==) `on` len) $ sortBy (compare `on` len) entries
      where f _                              []           =      []
            f i (r @ (Entry {len = l} : _) : rs) | i == l = r  : f (i + 1) rs
            f i                              rs           = [] : f (i + 1) rs
    

    Personally, I would use a Map instead

    import qualified Data.Map as M
    runs :: M.Map String Entry
    runs = M.fromList $ map (\entry -> (wrd entry, entry)) entries
    

    and lookup directly by English word instead of a two step length-of-English-word and then English-word process.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a std::vector< tr1::shared_ptr<mapObject> > that I'm trying build from data contained in
I'm trying build a regex that will replace any characters not of the format:
Im trying to build a page that will allow a user to select a
I'm trying build a method which returns the shortest path from one node to
Im trying to build sort of slide where when click on link .animate will
Im trying to build a simple AJAX script that uses a form to send
Im trying to build a form that calculates a total price based on a
Im trying to build a addin that can take some a selection of cells
I'm trying to build a Chrome browser extension, that should enhance the way the
I trying to build an application that is using the torrent technology to make

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.