Search:

Type: Posts; User: Nakeerb

Page 1 of 7 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    9
    Views
    3,052

    Computer color: No red/green/orange!

    For some reason my computer will not display red, certain shades of green, orange, and certain shades of purple. Red, for instance, appears as black now.

    My father attempted to install some USB...
  2. Replies
    9
    Views
    3,052

    Computer color: No red/green/orange!

    For some reason my computer will not display red, certain shades of green, orange, and certain shades of purple. Red, for instance, appears as black now.

    My father attempted to install some USB...
  3. Replies
    13
    Views
    4,690

    It must be something small, this entire program...

    It must be something small, this entire program works fairly well
  4. Replies
    13
    Views
    4,690

    //This is the header file "binary_tree.h" ...

    //This is the header file "binary_tree.h"


    //===========================/=/=/=/=/=/=/=========================//
    // STRUCTURES //...
  5. Replies
    13
    Views
    4,690

    I rewrote another program that does the same...

    I rewrote another program that does the same based on the psuedocode I was given today at around noon. However it still does not work. I know I am going off on an extreme tangent by posting this, but...
  6. Replies
    13
    Views
    4,690

    So I can do this for all functions? When would I...

    So I can do this for all functions? When would I need to append to right side or left?
  7. Replies
    13
    Views
    4,690

    Does this have anything to do with checking for...

    Does this have anything to do with checking for left?
  8. Replies
    13
    Views
    4,690

    Alright there we go. Alignments fixed

    Alright there we go. Alignments fixed
  9. Replies
    13
    Views
    4,690

    Binary Tree Revisited: Near Completion

    With the help of Nick I am coming very close to being able to insert data into this binary tree... yet some parts still refuse to work.

    Here is the entire code segment thus far




    #include...
  10. Replies
    20
    Views
    13,152

    void traverseInOrder(node *root){ if...

    void traverseInOrder(node *root){

    if (!root) //test first to see if done
    return;

    traverseInOrder(root->left);
    cout << root->data << " ";
    traverseInOrder(root->right);
    }
  11. Replies
    20
    Views
    13,152

    Is there any place I can talk to you besides this...

    Is there any place I can talk to you besides this board?
  12. Replies
    20
    Views
    13,152

    Urg I just give up. I am never going to get this...

    Urg I just give up. I am never going to get this done. the struct is a simple

    struct node{
    char data;
    node *left, *right;
    }

    that's it.

    I don't know how I'd insert into a tree using...
  13. Replies
    20
    Views
    13,152

    I do not understand what that all meant, URG I am...

    I do not understand what that all meant, URG I am dead
  14. Replies
    49
    Views
    5,401

    An int cannot hold a char value such as a letter,...

    An int cannot hold a char value such as a letter, and ints can only hold so much data before overflow errors occur. You can prevent it by making sure the input is less than or equal to MAX_INT in...
  15. Replies
    20
    Views
    13,152

    This is difficult ;-; must be careful

    This is difficult ;-; must be careful
  16. Replies
    20
    Views
    13,152

    This also does not build the binary tree in terms...

    This also does not build the binary tree in terms of a node holding an operator as data, with two children being separate nodes with integers as the data
  17. Replies
    20
    Views
    13,152

    Ahh I see how it works. I need to modify it...

    Ahh I see how it works. I need to modify it though, this does not work for expressions like "(((3+4)-3)-2)" because it only checks for numbers before and after, not when you have two parentheses next...
  18. Replies
    20
    Views
    13,152

    Helllp!

    Helllp!
  19. Replies
    20
    Views
    13,152

    No one can help? ;-; I am so dead

    No one can help? ;-; I am so dead
  20. Replies
    20
    Views
    13,152

    Dangit, Salem what do you mean ;-;

    Dangit, Salem what do you mean ;-;
  21. Replies
    20
    Views
    13,152

    And what about nested parenthesis?

    And what about nested parenthesis?
  22. Replies
    5
    Views
    1,289

    I take it none of you use a Mac

    I take it none of you use a Mac
  23. Replies
    20
    Views
    13,152

    The problem states there will always be...

    The problem states there will always be parenthesis. Any operand-operator-operand statement has ( and ) around it


    Also the problem speaks of writing constructors for two types of nodes, one that...
  24. Replies
    20
    Views
    13,152

    Hmmm, does this also work for nested...

    Hmmm, does this also work for nested parenthetical statements? You'd have to detect the first ), yes, but then the items before it and after the last (?
  25. Replies
    20
    Views
    13,152

    I tried it again and I still can't figure it out....

    I tried it again and I still can't figure it out. How the heck am I supposed to do this?
Results 1 to 25 of 156
Page 1 of 7 1 2 3 4