show/hide this revision's text 2 added 166 characters in body

Would you consider some Tree and Graph algorithms? This is what I did for ocaml:

  • graph/digraph data types with functions to convert to graphviz. Also algorithms for dijkstra, if a graph is connected et cetera.
  • tree data type with operations for reading from text and converting to graphviz
  • next convert these to higher types --modules and functors. And try to generalize all these functions --graph and digraph have the same signature, and edge/node data for using abstract types for the edge/node data.
  • create an unrooted-tree (in a graph with phantom types), and functions to convert between the two when graphs and trees given a rootis set.
  • create a DAG (directed acyclic graph) using phantom types

This will help you to ensure it is one.

Start start building a library of helpful functions that you noticed you've consistently used and put them in a utility file. Don't worry that the type of your tree tree/graph is wrong sub-optimal --play around with it, you'll see it very easy to change things around! I.E., Should you use Sets/Maps/Hashtbls or a more functional data structure as it's type? Why not both or all thirty! -- I like the hashtable solution for edges in ocaml since one key can store multiple results).

With all this you should have a high level an excellent functional programming stylistic grasp on types, recursion, functors, modules, higher-order-functions, abstract types, phantom types, algorithms in functional languages, curried functions et cetera! It's And you're creating a suite of files that you can easily break out to do a ton of tasks --project euler or whatever. As time goes by you'll replace these functions in your library with libraries and external ones and/or smaller functions and new data types...

I don't mean to throw a homework assignment at you, this is what I did since I encountered so many instances where I needed a graph/tree to visualize algorithms or to confirm my algorithms -- I ended up writing functions to draw in openGL as well since creating animated GIFs through C function calls wasn't portable enough for me.

anyway, good luck and let us know what you chose!

show/hide this revision's text 1

Would you consider some Tree and Graph algorithms? This is what I did for ocaml:

  • graph/digraph data types with functions to convert to graphviz. Also algorithms for dijkstra, if a graph is connected et cetera.
  • tree data type with operations for reading from text and converting to graphviz
  • next convert these to higher types --modules and functors. And try to generalize all these functions --graph and digraph have the same signature, and edge/node data for abstract types.
  • create an unrooted-tree (in a graph with phantom types), and functions to convert between the two when a root is set.
  • create a DAG (directed acyclic graph) using phantom types to ensure it is one.

Start building a library of helpful functions that you noticed you've consistently used and put them in a utility file. Don't worry that the type of your tree is wrong --play around with it! I.E., Should you use Sets/Maps/Hashtbls or a more functional data structure as it's type? Why not both or all thirty! -- I like the hashtable solution for edges in ocaml since one key can store multiple results).

With all this you should have a high level grasp on types, recursion, functors, modules, higher-order-functions, abstract types, phantom types, algorithms in functional languages, curried functions et cetera! It's a suite of files that you can easily break out to do a ton of tasks. As time goes by you'll replace these with libraries and smaller functions and new data types...

I don't mean to throw a homework assignment at you, this is what I did since I encountered so many instances where I needed a graph/tree to visualize algorithms or to confirm my algorithms -- I ended up writing functions to draw in openGL as well since creating animated GIFs through C function calls wasn't portable enough for me.

anyway, good luck and let us know what you chose!