Search:

Type: Posts; User: tabstop

Search: Search took 0.05 seconds.

  1. Replies
    5
    Views
    3,289

    That's not how you did/do it in C either. You...

    That's not how you did/do it in C either. You might have three nodes, but not three separate lists. (And even in C you probably didn't.)
  2. Replies
    5
    Views
    3,289

    That is so amazingly not the way it should work,...

    That is so amazingly not the way it should work, no. Each list needs to know its own size, so that you can actually build the list. Look what happens when you try to build list b: sz is already 1,...
  3. Replies
    5
    Views
    3,289

    Since sz is static, you only get one size, ever,...

    Since sz is static, you only get one size, ever, despite the number of lists you create.

    This is silly.
Results 1 to 3 of 3