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.
middle = begin + (end - begin)/2;, but unless you store more thanLONG_MAX/2items 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