-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray.h
61 lines (55 loc) · 1.57 KB
/
array.h
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
#ifndef ARRAY_H
#define ARRAY_H
#include<exception>
#include<string>
class ArrayException : public std::exception{
private:
std::string error_msg{};
public:
ArrayException(std::string error);
const char* what() const noexcept override;
};
template <class T>
class Array{
private:
size_t length;
size_t size; // size refers to the total capacity of the array
T *arr;
public:
// Constructors
Array();
Array(int size);
Array(int size, T arr[]);
Array(const Array<T> &array); // Copy Constructor
// Mutators (Setters)
void set(int index, T element);
// Accessors (Getters)
T* getArray() const;
int getLength() const;
int getSize() const;
T get(int index) const;
// Facilitators
void display() const;
int append(T element);
void insert(int index, T element);
T del(int index);
int remove(T element);
T pop();
int search(T element, bool improvised=true) const;
int bin_search(T element) const;
T max() const;
T min() const;
void reverse();
void l_shift();
void r_shift();
void l_rotate();
void r_rotate();
// sortings
// Operator Overloadings
T& operator[](int index) const;
template<class U>
friend std::ostream &operator<<(std::ostream &out, const Array<U>& arr);
// Destructors
~Array();
};
#endif