Giter Site home page Giter Site logo

anagrams's Introduction

Anagrams! In Haskell!

Compile

Run make to compile the program with GHC.

Run

Specify a dictionary file with the -f option; the default is /usr/share/dict/words. All other command-line arguments are strung together to form the input phrase.

Notes

The algorithm turns out to be slightly similar to that of the an program. An attempt as been made to be efficient, by using Haskell’s unboxed vectors and limiting the contents to 8-bit integers. This means you can’t have more that 255 of any given character in a word/anagram string, but this is fairly trivially modifiable in the source (look for Int8 and replace with Int32 or whatever).

When reading in the dictionary, some pre-processing is done to cut it down to size. Some of this will be perhaps configurable on the command-line in the future (all the filters are composed together into a pipeline; see filterAll in Main.hs).

To do: cut down the dictionary size dynamically during the algorithm.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.