Search:

Type: Posts; User: Barney McGrew

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    7,789

    Prefix trees are quite useful for that. ...

    Prefix trees are quite useful for that.


    #include <ctype.h>
    #include <stdio.h>
    #include <stdlib.h>

    struct letter {
    int letter;
    struct letter *leaf;
  2. Replies
    10
    Views
    7,789

    I was referring to the overall design of his...

    I was referring to the overall design of his program, particularly how he was storing sequences of characters into arrays then operating on them (instead of operating on them one-by-one), rather than...
  3. Replies
    10
    Views
    7,789

    You're making it way too complicated. ...

    You're making it way too complicated.


    #include <ctype.h>
    #include <stdio.h>

    int main(void)
    {
    int inspace = 1, c;
Results 1 to 3 of 3