Search:

Type: Posts; User: Sherina

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    2,066

    This is the way I'm use to it swapping linked...

    This is the way I'm use to it swapping linked list. The book I'm reading from doesn't really explain how to swap linked list and my professor doesn't explain how to swap them either.
  2. Replies
    3
    Views
    2,066

    [SOLVED]Help Sorting A Linked List

    Hello I'm trying to sort a linked list. I'm having some trouble figuring out how to swap an array of char. I know I should have used "string" but this is an assignment for school and we aren't...
  3. Replies
    4
    Views
    1,154

    Well this was an assignment for school and this...

    Well this was an assignment for school and this is how my teacher wanted us to format our code.
  4. Replies
    4
    Views
    1,154

    Help with a function

    I trying to find the highest temperature for a city then output that temperature and the city that goes with it. I'm having a lot of trouble doing that. Can you all help me?

    HIGH_city is char[25]....
  5. Replies
    7
    Views
    1,113

    Thank You all so much for your help. However I...

    Thank You all so much for your help. However I still don't know how to use the data I got in the FileRead function in all the other functions.
  6. Replies
    7
    Views
    1,113

    Don't Understand Class

    I remember doing very simple classes in c++ before but I'm having a lot of trouble understanding this use of class. One that reads from file into an array. I would ask my teacher but he just makes it...
  7. Replies
    4
    Views
    1,403

    The assignment requires me to do it this way. I...

    The assignment requires me to do it this way. I haven't found any good tutorials on how to do the std::list method.

    I found a way to sort it with singly list but it doesn't seen to work for me

    ...
  8. Replies
    4
    Views
    1,403

    Sorting a Linked List

    Hi I'm trying to sort a linked list I created using a function but I have no idea how to sort it. Can anyone help me?

    Here's my Code:


    #include <iostream>
    #include...
  9. Replies
    1
    Views
    972

    Easier Way To Do a Linked List?

    This is how my teacher explained to use how to do a linked list.


    #include <iostream>
    #include <cstdlib>
    #include <math.h>
    #include <fstream>...
  10. Replies
    2
    Views
    879

    struct Node { string name; long ID; ...

    struct Node {

    string name;
    long ID;
    int SCORE;

    };

    Node readStuct()
    {
  11. Replies
    2
    Views
    879

    Arrays and Structures

    I'm trying to make a function that will read in the data from a file and store them in an array of structures. I'm not really sure how to do I've tried various things short of just making finding out...
Results 1 to 11 of 11