Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created a doubly linked list implementation in c++, it works good, however I would like having some experts seeing it and suggesting improvements. Follow:

linkedlist.h

#ifndef LINKEDLIST_H
#define LINKEDLIST_H 1

// {{{ template <typename T> class LinkedList
template <typename T> class LinkedList
{
  // {{{ class Link
  class Link
  {
  public:
    T value;
    Link *prev;
    Link *next;

    Link(const T &value, Link *prev, Link *next);

    Link& operator=(const Link& b);

    bool operator<(const Link& b) const;
  };
  // }}}

  // {{{ Properties
  Link *head_;
  Link *tail_;
  long size_;
  // }}}
public:
  LinkedList(void);
  ~LinkedList(void);
  void clear(void);
  void copyTo(LinkedList<T> &list, const long &from, const long &count);
  inline T get(const long &index);
  inline T get(Link *link);
  inline Link *head(void);
  Link *link(const long &index);
  void push(const T &value);
  inline void remove(const long &index);
  void remove(Link *link);
  inline long size(void);
  inline void sort(void);
  inline Link *tail(void);

  inline Link &operator[](const long &index);
};
// }}}

// {{{ class LinkedListException
class LinkedListException
{
};
// }}}

// {{{ Auxiliars
template <typename T> void mergeSort(LinkedList<T> &list, const long &begin, const long &end);
template <typename T> void merge(LinkedList<T> &list, const long &begin, const long &middle, const long &end);
// }}}

#endif // LINKEDLIST_H

linkedlist.cpp

#include <stdlib.h>

#include "linkedlist.h"

// {{{ class LinkedList::Link
// {{{ template <typename T> LinkedList<T>::Link::Link(const T &value, Link *prev, Link *next)
template <typename T> LinkedList<T>::Link::Link(const T &value, Link *prev, Link *next) : value(value), prev(prev), next(next)
{
}
// }}}

// {{{ template <typename T> typename LinkedList<T>::Link& LinkedList<T>::Link::operator=(const Link& b)
template <typename T> typename LinkedList<T>::Link& LinkedList<T>::Link::operator=(const Link& b)
{
  value = b.value;

  return *this;
}
// }}}

// {{{ template <typename T> bool LinkedList<T>::Link::operator<(const Link& b) const
template <typename T> bool LinkedList<T>::Link::operator<(const Link& b) const
{
  return value < b.value;
}
// }}}
// }}}

// {{{ class LinkedList
// {{{ template <typename T> LinkedList<T>::LinkedList(void)
template <typename T> LinkedList<T>::LinkedList(void) : head_(NULL), tail_(NULL), size_(0)
{
}
// }}}

// {{{ template <typename T> LinkedList<T>::~LinkedList(void)
template <typename T> LinkedList<T>::~LinkedList(void)
{
  clear();
}
// }}}

// {{{ template <typename T> void LinkedList<T>::clear(void)
template <typename T> void LinkedList<T>::clear(void)
{
  if(size_ > 0)
  {
    Link *e = head_;
    Link *n;

    do
    {
      n = e->next;

      delete e;

      e = n;
    }
    while(e != head_);

    head_ = tail_ = NULL;
    size_ = 0;
  }
}
// }}}

// {{{ template <typename T> void LinkedList<T>::copyTo(LinkedList<T> &list, const long &from, const long &count)
template <typename T> void LinkedList<T>::copyTo(LinkedList<T> &list, const long &from, const long &count)
{
  if(from >= 0 && count > 0 && count - from <= size_)
  {
    long i = 0;

    Link *e = head_;
    Link *n;

    for(; i < from; i++)
      e = e->next;

    do
    {
      n = e->next;

      list.push(e->value);

      e = n;
    }
    while(++i < from + count);
  }
}
// }}}

// {{{ template <typename T> inline T LinkedList<T>::get(const long &index)
template <typename T> inline T LinkedList<T>::get(const long &index)
{
  return get(link(index));
}
// }}}

// {{{ template <typename T> inline T LinkedList<T>::get(Link *link)
template <typename T> inline T LinkedList<T>::get(Link *link)
{
  return link->value;
}
// }}}

// {{{ template <typename T> inline typename LinkedList<T>::Link *LinkedList<T>::head(void)
template <typename T> inline typename LinkedList<T>::Link *LinkedList<T>::head(void)
{
  return head_;
}
// }}}

// {{{ template <typename T> typename LinkedList<T>::Link *LinkedList<T>::link(const long &index)
template <typename T> typename LinkedList<T>::Link *LinkedList<T>::link(const long &index)
{
  if(index < 0 || index >= size_)
    throw LinkedListException();

  Link *e = head_;

  if(index < (size_ >> 1))
    for(long i = 0; i < index; i++)
      e = e->next;
  else
    for(long i = size_; i > index; i--)
      e = e->prev;

  return e;
}
// }}}

// {{{ template <typename T> void LinkedList<T>::push(const T &value)
template <typename T> void LinkedList<T>::push(const T &value)
{
  Link *link = new Link(value, tail_, head_);

  if(size_ > 0)
  {
    tail_->next = link;
    head_->prev = link;
  }
  else
  {
    link->prev = link;
    link->next = link;

    head_ = link;
  }

  tail_ = link;

  size_++;
}
// }}}

// {{{ template <typename T> inline void LinkedList<T>::remove(const long &index)
template <typename T> inline void LinkedList<T>::remove(const long &index)
{
  remove(link(index));
}
// }}}

// {{{ template <typename T> void LinkedList<T>::remove(Link *link)
template <typename T> void LinkedList<T>::remove(Link *link)
{
  if(size_ > 0)
  {
    if(size_ > 1)
    {
      link->prev->next = link->next;
      link->next->prev = link->prev;
    }
    else
      head_ = tail_ = NULL;

    delete link;

    size_--;
  }
}
// }}}

// {{{ template <typename T> inline long LinkedList<T>::size(void)
template <typename T> inline long LinkedList<T>::size(void)
{
  return size_;
}
// }}}

// {{{ template <typename T> inline void LinkedList<T>::sort(void)
template <typename T> inline void LinkedList<T>::sort(void)
{
  mergeSort(*this, 0, size_ - 1);
}
// }}}

// {{{ template <typename T> inline typename LinkedList<T>::Link *LinkedList<T>::tail(void)
template <typename T> inline typename LinkedList<T>::Link *LinkedList<T>::tail(void)
{
  return tail_;
}
// }}}

// {{{ template <typename T> inline typename LinkedList<T>::Link &LinkedList<T>::operator[](const long &index)
template <typename T> inline typename LinkedList<T>::Link &LinkedList<T>::operator[](const long &index)
{
  return *link(index);
}
// }}}
// }}}

// {{{ Auxiliars
// {{{ template <typename T> void mergeSort(LinkedList<T> &list, const long &begin, const long &end)
template <typename T> void mergeSort(LinkedList<T> &list, const long &begin, const long &end)
{
  if(end - begin)
  {
    long middle = (begin + end) >> 1;

    mergeSort(list, begin, middle);
    mergeSort(list, middle + 1, end);

    merge(list, begin, middle, end);
  }
}
// }}}

// {{{ template <typename T> void merge(LinkedList<T> &list, const long &begin, const long &middle, const long &end)
template <typename T> void merge(LinkedList<T> &list, const long &begin, const long &middle, const long &end)
{
  long size = end - begin + 1;

  LinkedList<T> temp;

  list.copyTo(temp, begin, size);

  long i = 0;
  long j = middle - begin + 1;

  for(long k = 0; k < size; k++)
  {
    if(j <= size - 1)
    {
      if(i <= middle - begin)
      {
        if(temp[i] < temp[j])
          list[begin + k] = temp[i++];
        else
          list[begin + k] = temp[j++];
      }
      else
        list[begin + k] = temp[j++];
    }
    else
      list[begin + k] = temp[i++];
  }
}
// }}}
// }}}

My main doubt is about sorting, I don't know if my merge sort implementation is good enough.

Anyway, here we have a doubly linked-list implementation for those who need one.

share|improve this question
3  
Why not std::list? Anything in particular that made you roll your own? – hexa Jul 5 '11 at 0:18
6  
Perhaps you could try codereview.stackexchange.com as this question is not suitable for Stack Overflow (it's not a question). – Greg Hewgill Jul 5 '11 at 0:18
1  
All the templaty stuff cannot be compiled separately from its use. You might as well just leave everything in the header. – Kerrek SB Jul 5 '11 at 0:23
Just learning, I didn't know enough about std::list, now I think it can be a good idea to use it. – Wanderson Jul 5 '11 at 0:42
The merge sort suffers from one of the classic overflow errors, should be middle = begin + (end - begin)/2;, but unless you store more than LONG_MAX/2 items in your list it won't be a problem. A bigger problem is that you're using a sort algorithm designed for random access, with a structure that doesn't allow random access. You'll have miserable performance as a result. – Ben Voigt Jul 5 '11 at 1:20

closed as off topic by Billy ONeal, jwismar, Nicol Bolas, Greg Hewgill, Ben Voigt Jul 5 '11 at 1:17

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

1) Don't do this:

LinkedList(void);
~LinkedList(void);

Drop the void.

LinkedList();
~LinkedList();

2) Your class contains RAW pointers. Either use smart pointers or obey the "rule of three" preferably both.

3) Rather than have a funny named copy

void copyTo(LinkedList<T> &list, const long &from, const long &count);

define your copy constructor and assignment operator correctly.

5) Why do you give access to internal structures?

Link *link(const long &index);

This tightly binds the user to the implementation of the class. Rather than do this provide an abstract interface like an iterator.

share|improve this answer
(1) is nonsense. (3) It's a subset copy which needs additional parameters, assignment operator can't handle that. A constructor can, but it won't be a copy constructor. – Ben Voigt Jul 5 '11 at 1:17
@Ben: Why is one nonsense? It adds no information and is untypical so adds noise. Three: OK badly worded; but is just an alternative constructor, unless it is a splice in which case it should be named appropriately. – Loki Astari Jul 5 '11 at 1:42
(1) There's nothing wrong with putting void in the parameter list. It's a stylistic choice, and one I happen to agree with, for consistency with C code. I might as well complain that template <typename T> should go on a separate line. It simply isn't important, except for consistency with the rest of his project, not code you'd write. (3) This function appears to copy a subset of the list, where splice would remove items from the source, so I think it's named appropriately. – Ben Voigt Jul 5 '11 at 2:00

Not the answer you're looking for? Browse other questions tagged or ask your own question.