Week 20140511

Dan Grossman

  • function closure: function can use bindings from outside the definition

[Data structure and algorithm analysis in C]

  • linked list usage: polynomials, radix sort

    typedef struct node *node_ptr; struct node { int element; node_ptr next; }; typedef node_ptr LIST; typedef node_ptr position;

Comments

Comments powered by Disqus