-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdynamicList.h
More file actions
38 lines (33 loc) · 767 Bytes
/
dynamicList.h
File metadata and controls
38 lines (33 loc) · 767 Bytes
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
/*
Shacobe Johnson
Computer Science 340
Section 02
Lab 5
*/
#include <iostream>
#include <string>
using namespace std;
const int defmaxlistsize=50;
class dynamicList
{
public:
dynamicList();
dynamicList(int maxnumber);
~dynamicList();
bool Full() const;
bool Empty() const;
void Getlast(int &item, bool &found);
bool Insert(int item);
bool Insert(int item, int location);
void Remove(int &item, bool &found);
void Remove(int &item, bool &found,int location);
bool Search(int item, int &location);
bool Search(int item);
void Clear();
void Print() const;
int currentSize() const;
private:
int *element;
int length;
int size;
};