summaryrefslogtreecommitdiff
path: root/omegalib/omega_lib/include/basic/SimpleList.c
blob: da7de9b0532a337294d05b55f87b40517ff10d1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
namespace omega {
  
template<class T> Simple_List_Iterator<T>::Simple_List_Iterator(Simple_List<T> &l) 
: List_Element_Iterator<T>(l.contents) {}

template<class T> Simple_List_Iterator<T>::Simple_List_Iterator(const Simple_List<T> &l) 
: List_Element_Iterator<T>(l.contents) {}

template<class T> Simple_List_Iterator<T>::Simple_List_Iterator()
: List_Element_Iterator<T>(0) {}

template<class T> Iterator<T> *Simple_List<T>::new_iterator()
{
    return new Simple_List_Iterator<T>(*this);
}

template<class T> const T &Simple_List<T>::operator[](int i) const
{
    Simple_List_Iterator<T> p(*this);

    while(--i > 0 && p)
	p++;

    if (p)
	return *p;
    else
	return *((T *)0);
}

template<class T>       T &Simple_List<T>::operator[](int i)
{
    Simple_List_Iterator<T> p(*this);

    while(--i > 0 && p)
	p++;

    if (p)
	return *p;
    else
	return *((T *)0);
}


template<class T> int Simple_List<T>::size() const
    {
    int i = 0;
    List_Element<T> * p = contents;
    while (p)
	{
	p = p->tail;
	i++;
	}
    return i;
    }

template<class T> T &Simple_List<T>::front() const
    {
    return contents->head;
    }

template<class T> T Simple_List<T>::remove_front()
    {
    List_Element<T> *frunt = contents;
    contents = contents->tail;
    T fruntT = frunt->head;
    frunt->tail = 0;
    delete frunt;
    return fruntT;
    }

template<class T> void Simple_List<T>::prepend(const T &item)
    {
    contents = new List_Element<T>(item, contents);
    }


template<class T> void Simple_List<T>::append(const T &item)
    {
    *(end()) = new List_Element<T>(item, 0);
    }


template<class T> void Simple_List<T>::del_front()
    {
    List_Element<T> *e = contents;
    contents = contents->tail;
    e->tail = 0;
    delete e;
    }


template<class T> void Simple_List<T>::clear()
    {
    delete contents;
    contents = 0;
    }

template<class T> void Simple_List<T>::join(Simple_List<T> &consumed)
    {
    List_Element<T> *e = consumed.contents;
    consumed.contents = 0;
    *(end()) = e;
    }

} // namespace