Search:

Type: Posts; User: Emeighty

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Thread: C++ Graphs

    by Emeighty
    Replies
    1
    Views
    1,421

    C++ Graphs

    I have an assignment to make a minimm spanning tree. As always I am dealing with a textbook (Frank Carrino, Data abstraction & Problem solving)that gives pseudocode that I dont understand. Can any...
  2. ahh ok, i am beginning to see what u are saying....

    ahh ok, i am beginning to see what u are saying. But how would i access the decendant info?
  3. I would like to store a Secure object (with...

    I would like to store a Secure object (with levelofAcess) or Support (with PIN number) in an Employee object (it doesnt have access to LevelofAcess or PIN directly), so that I may save the...
  4. I am looking to store all the information about...

    I am looking to store all the information about employees , there are different type of emplyees -secure and support. If i have 1 secure employee, and 1 support employee, is it possible to save the...
  5. Getting a ancestor to save derived class info

    I am trying to get an ancestor array to save the info of a derived class. Maybe I am going abou this the wrong way. Here is what I am working on. Person is the base class, employee is the decendant...
  6. Replies
    3
    Views
    1,658

    I'm grateful. Thanks for all the help.

    I'm grateful. Thanks for all the help.
  7. Replies
    3
    Views
    1,658

    Binary Trees and Graphs

    Can anyone refer me to a website that shows example of Binary trees and a graph data structure. I am looking to get a better grasp on this. Or if someone can explain it in easy terms, showing things...
  8. Replies
    4
    Views
    2,848

    I understand the nontemplate way....somewhat. I...

    I understand the nontemplate way....somewhat. I see where its going. But with the template, push, pop, and other things are functions that are standard that u can use when do



    #include<stack>...
  9. Replies
    4
    Views
    2,848

    Stacks and queues info

    I checked out that confuzzled site that i was refered to on another post. it goes thru things that seem a little too dificult at the moment. Can anyone give an example of how a stack and queue are...
  10. a thanks to you ,and an early start on Data structures

    Thank you all soooo much for helping me on my last C++ class. I got an A- in the course. Big thanks to Matsp.

    I have a few days before my next course named Data Structures begins. It will go over...
  11. Replies
    5
    Views
    1,346

    I got a little further on this assignment. My...

    I got a little further on this assignment. My question is, how do i use the enum Player? And how can I create player to take turns?



    #include<iostream>
    using namespace std;


    class Board
    ...
  12. Replies
    5
    Views
    1,346

    a little further

    I got a litle further on this tic tac toe

    here is the code i currently have.The rules that i have to follow are posted next to some of the function names its only a really rough draft.
    Also is...
  13. Replies
    5
    Views
    1,346

    Tic Tac Toe Start

    I am starting an assignment that involves tic tac toe. Its just a start. can someone look it over and see where I can go from here. The requirements for each function is in the code. Any help is...
  14. Replies
    41
    Views
    5,232

    Recusively inserting to list

    I am trying to insert numbers into this linked list recursively, but the only way that works is if the inserted number is less than the head. Can anyone exlain how i can fix my error?



    ...
  15. Replies
    41
    Views
    5,232

    I changed up the code for the retrieve function ,...

    I changed up the code for the retrieve function , and it works like a charm !!!!
    OH boy this was a challenging question. 2 more to go.

    the new code is



    void List::retrieve(node *pPointer,...
  16. Replies
    41
    Views
    5,232

    The final touches

    I finally (with lots of help) came up with the code for this linked. But the only thing i cant get right is the retrieve function. I am able to retrieve things that are in the list, but if it's not...
  17. Replies
    41
    Views
    5,232

    I changed up a few things and got the same...

    I changed up a few things and got the same result, the program skips the if and goes straight to the else.

    How would an empty node be defined?
    Also the equivilant operator == makes a difference,...
  18. Replies
    41
    Views
    5,232

    ok, I found the indent feature on the Dev-CPP...

    ok, I found the indent feature on the Dev-CPP compiler and the "find matching braces " feature and enabled it.

    For the program, I am trying to fill the HeadPtr only if it is empty.
    My questions...
  19. Replies
    41
    Views
    5,232

    clueless

    Since i am not hearing or understanding anything, I am going to start from scratch. I am aware there are pretty talented people on this site. If it takes me making myself look very ignorant to learn...
  20. Replies
    41
    Views
    5,232

    I know this is getting repetitive. Pretty...

    I know this is getting repetitive. Pretty ridiculous, i need a Live breathing teacher, If anyone is out there PLEASE pm me. I am willing to pay you for your time. Me paying you will save me money...
  21. Replies
    41
    Views
    5,232

    ok, i think i get that. for the sort, how would...

    ok, i think i get that. for the sort, how would i get it repeat itself ?



    do
    {
    cout << "Please insert the first number : " ;
    cin >> number ;
    insertion(HeadPtr, number);
  22. Replies
    41
    Views
    5,232

    so i would insert the first number in the head...

    so i would insert the first number in the head outside of the insertion function. Then in the insertion function it would take that head in, then add more numbers to the list until 0 is entered. is...
  23. Replies
    41
    Views
    5,232

    the assignment says for me to Use these...

    the assignment says for me to

    Use these procedures to write a program that inputs a series of integers, inserting them into a list until 0 is entered. Then a second series of integers is input,...
  24. Replies
    41
    Views
    5,232

    i thought i was taking a headptr in. HeadPtr is...

    i thought i was taking a headptr in. HeadPtr is the first node that is empty. and it inserts a number when it is in the insertion function?
    since i dont know how to do it recursively, i at least...
  25. Replies
    41
    Views
    5,232

    getting the sorting function to repeat until sorted

    I took some time to try to understand linked list. I split up the functions to do separate things. But now whatever i do, i cannot get m sorting function to sort correctly. can anyone see how to...
Results 1 to 25 of 80
Page 1 of 4 1 2 3 4