Search:

Type: Posts; User: carter88

Search: Search took 0.00 seconds.

  1. Thread: Sorting

    by carter88
    Replies
    1
    Views
    775

    Sorting

    i have class like this



    template class<T>
    class A{
    private:
    T m;
    T n;
    List<T> *start;
  2. Replies
    5
    Views
    1,748

    I do some stuff there to avoid linker errors how...

    I do some stuff there to avoid linker errors
    how should i use this at there?
  3. Replies
    5
    Views
    1,748

    yeah i think i make one of those, but for example...

    yeah i think i make one of those, but for example when i write below in other functions


    cout<<start->x<<start->y<<start->value;

    i get what i want ; but in operator<< implementation this does...
  4. Replies
    5
    Views
    1,748

    friend ostream problem

    I have a class something like this



    template class<T>
    class A{
    private:
    T m;
    T n;
    List<T> *start;
  5. Replies
    1
    Views
    911

    a problem with pointers

    I have a doublylinked-list which i already inserted some values, but when i try to make search&update this loop does not terminate



    if(head!=NULL)
    {
    temp = head;
    ...
Results 1 to 5 of 5