Search:

Type: Posts; User: ryptide

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,159

    After you said that a lightblub went off in my...

    After you said that a lightblub went off in my head! THANKS!! :D
  2. Replies
    7
    Views
    1,159

    I've narrowed it down to here... What is wrong...

    I've narrowed it down to here... What is wrong with this??


    for(p = *front; p != NULL; p = p->next_proc_ptr){}


    thanks for your help.
  3. Replies
    7
    Views
    1,159

    yup. but it shouldn't matter if I use...

    yup. but it shouldn't matter if I use ReadyList[1] instead of ReadyList[0].. ? or should it. I was just using main to test out my queue which has a seg faults in it :(
  4. Replies
    7
    Views
    1,159

    No that is correct. Since I initialized my Array...

    No that is correct. Since I initialized my Array with 6:


    proc_ptr ReadyList[6];

    my for loop will only run 6 times:


    for(i = 0; i < 6; i++)
  5. Replies
    7
    Views
    1,159

    Pointer problems :(

    I'm having a hard time finding my segmentation faults. Can anyone help me out please?


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

    typedef struct proc_struct proc_struct;
    ...
  6. Replies
    15
    Views
    3,809

    Thanks for the help. This assignment is due...

    Thanks for the help. This assignment is due tomarrow and the execution time is worth 40% of the assignment. I think I'll be getting a 60% on this assignment because I don't think I can code a hash...
  7. Replies
    15
    Views
    3,809

    If I put the contents of the dictionary into a...

    If I put the contents of the dictionary into a BST, how would I make it so the BST would be balanced? Since the dictionary is already in order, I would have a BST that would look like a linked list....
  8. Replies
    15
    Views
    3,809

    efficiency problem

    My questions is how can I make this program more efficient. I have ran out of ideas of what to do. This program takes way too long to execute. I just starting coding in C 3 months ago so I don't know...
Results 1 to 8 of 8