Search:

Type: Posts; User: quzah

Search: Search took 0.13 seconds.

  1. Replies
    22
    Views
    3,316

    It's a memory vs speed trade off. For the cost of...

    It's a memory vs speed trade off. For the cost of one more pointer per node, I can now instantly remove that node or insert before or after that node, without having to loop through the whole list to...
  2. Replies
    22
    Views
    3,316

    Another thread successfully high-jacked! Well...

    Another thread successfully high-jacked! Well done, drinks all around!


    Quzah.
  3. Replies
    22
    Views
    3,316

    I would totally build a faraday cage...

    I would totally build a faraday cage into the walls of my house if I was building a new one. Not even joking.


    Quzah.
  4. Replies
    22
    Views
    3,316

    Yeah but that would be 4 uncool months! ...

    Yeah but that would be 4 uncool months!


    Quzah.
  5. Replies
    22
    Views
    3,316

    It moves through the linked list. Let's say you...

    It moves through the linked list. Let's say you have already set up 3 nodes.
    root->next = node1, node1->next = node2;So let's see what it does:
    conductor = root;
    if( conductor != NULL ) /* it's...
Results 1 to 5 of 5