problem sem work

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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
#pragma once
#include <iostream>
namespace dl {
	using namespace std;
	template <typename T> 
	class DoubleList { 
	protected:
		template <typename U>
		class Prvek {
			Prvek<U> *predchudce;
			Prvek<U> *nasledovnik;
			U *data;
		public:
			Prvek(U* data){
				predchudce = NULL;
				nasledovnik = NULL;
				this->data = data;
			}
			void SetPredchudce(Prvek<U> *predchudce){
				this->predchudce = predchudce;
			}
			Prvek<U> *GetPredchudce(){
				return predchudce;
			}
			void SetNasledovnik(Prvek<U> *nasledovnik){
				this->nasledovnik = nasledovnik;
			}
			Prvek<U> *GetNasledovnik(){
				return nasledovnik;
			}
			U *GetData(){
				return data;
			}
		};
	private:
		Prvek<T>* prvni;
		Prvek<T>* aktualni;
		int pocetPrvku;
	public: 
		typedef void (*UkFunkce)(const T); 

		DoubleList(void) {	
			this->aktualni = NULL;
			this->prvni = NULL;
			this->pocetPrvku = 0;
		};

		~DoubleList(void) {
			Zrus();
		}; 

		bool JePrazdny(void) const {
			if(this->pocetPrvku == 0) {
				return true;
			} else {
				return false;
			}
		}; 

		int PocetPrvku() const {
			return this->pocetPrvku;
		}; 

		void VlozPrvni(const T &data) {
			const T* temp = &data;
			T *d = const_cast<T*>(temp);
			Prvek<T> *novyPrvek = new Prvek<T>(d);
			if(JePrazdny()) {
				novyPrvek->SetNasledovnik(novyPrvek);
				novyPrvek->SetPredchudce(novyPrvek);
				this->aktualni = novyPrvek;
			} else {
				novyPrvek->SetPredchudce(this->prvni->GetPredchudce());
				novyPrvek->SetNasledovnik(this->prvni);
				this->prvni->GetPredchudce()->SetNasledovnik(novyPrvek);
				this->prvni->SetPredchudce(novyPrvek);
			}
			this->prvni = novyPrvek;
			this->pocetPrvku++;
		}; 

		T OdeberAktualni(void){
			if(aktualni != NULL && !JePrazdny()) {
				if(aktualni == prvni){
					return OdeberPrvni();
				} else {
					T* data = this->aktualni->GetData();
					this->aktualni->GetPredchudce()->SetNasledovnik(this->aktualni->GetNasledovnik());
					this->aktualni->GetNasledovnik()->SetPredchudce(this->aktualni->GetPredchudce());
					aktualni = prvni;
					pocetPrvku--;
					return *data;
				}
			} else {
				throw domain_error("Double list je prazdny.");	
			}
		};

		void Prohlidka(UkFunkce ukFunkce) const {
			Prvek<T>* akt = prvni;
			if(akt != NULL) {
				do{
					ukFunkce(*akt->GetData());
					akt = akt->GetNasledovnik();
				}while(akt != prvni);
			}
		}; 

		void Zrus(void) {
			prvni = NULL;
			aktualni = NULL;
			pocetPrvku = 0;
		}; 

		class iterator : public std::iterator<std::forward_iterator_tag, T>{
		private:
			Prvek<T> *_ptr;
		public:
			typedef T value_type;
			typedef T& reference;
			typedef T* pointer;
			typedef int difference_type;
			typedef std::forward_iterator_tag iterator_category;
			inline iterator(Prvek<T>* x=0):_ptr(x){}
			inline iterator(const iterator& x):_ptr(x._ptr) {}
			inline iterator& operator=(const iterator& x) { 
				_ptr=x._ptr; 
				return *this; 
			}
			inline iterator& operator++() { 
				_ptr = _ptr->GetNasledovnik(); 
				return *this; 
			}
			inline iterator operator++(int) { 
				iterator tmp(*this); 
				_ptr = _ptr->GetNasledovnik(); 
				return tmp; 
			}
			inline reference operator*() const {
				return *_ptr->GetData(); 
			}
			inline pointer operator->() const { 
				return _ptr->GetNasledovnik(); 
			}
			inline bool operator==(const iterator& x) const {
				return _ptr == x._ptr; 
			}	
			inline bool operator!=(const iterator& x) const {
				return _ptr != x._ptr; 
			}	
		};

		class const_iterator : public std::iterator<std::forward_iterator_tag, T>{
		private:
			Prvek<T> *_ptr;
		public:
			typedef T value_type;
			typedef T& reference;
			typedef T* pointer;
			typedef int difference_type;
			typedef std::forward_iterator_tag iterator_category;
			inline const_iterator(Prvek<T>* x=0):_ptr(x){}
			inline const_iterator(const const_iterator& x):_ptr(x._ptr) {}
			inline const_iterator& operator=(const const_iterator& x) { 
				_ptr=x._ptr; 
				return *this; 
			}
			inline const_iterator& operator++() { 
				_ptr = _ptr->GetNasledovnik(); 
				return *this; 
			}
			inline const_iterator operator++(int) { 
				const_iterator tmp(*this); 
				_ptr = _ptr->GetNasledovnik(); 
				return tmp; 
			}
			inline reference operator*() const {
				return *_ptr->GetData(); 
			}
			inline pointer operator->() const { 
				return _ptr->GetNasledovnik(); 
			}
			inline bool operator==(const const_iterator& x) const {
				return _ptr == x._ptr; 
			}	
			inline bool operator!=(const const_iterator& x) const {
				return _ptr != x._ptr; 
			}	
		};

		iterator begin() {
			return iterator(prvni);
		}

		iterator end() {
			return iterator(prvni);
		}

		const_iterator cbegin() {
			return const_iterator(prvni);
		}

		const_iterator cend() {
			return const_iterator(prvni);
		}
	};
}


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
#pragma once
#include <iostream>
#include "DoubleList.h"
#include "Student.h"

using namespace dl;

void VypisPrvku(Student student){
	cout << "Identifikacni cislo: " << student.GetIdentifikacniCislo() << ", ";
	cout << "Jmeno: " << student.GetJmeno() << ", ";
	cout << "Prijmeni: " << student.GetPrijmeni() << endl;
}

class EvidenceStudentu {	
public:
	typedef enum {
		Prvni, Predchozi, Nasledujici, Posledni
	} Pozice;

	Student &VyhledaniStudenta(const string &identifikacniCislo) {
		if(!listStudentu.JePrazdny()) {
			DoubleList<Student>::iterator it = listStudentu.begin();
			do{
				if(it.operator*().GetIdentifikacniCislo().compare(identifikacniCislo) == 0) {
					return it.operator*();
				}
				it++;
			}while(it != listStudentu.end());
		}
		cout << "Nenalezen student s timto identifikacnim cislem: " << identifikacniCislo << "." <<endl;
	};

	void PridaniStudenta(const Student &student, Pozice pozice = Posledni) {
		Student &temp = const_cast<Student&>(student);
		if(isInList(temp.GetIdentifikacniCislo())){
			cout << "Student s timto identifikacnim cislem: " << temp.GetIdentifikacniCislo() << ", jiz existuje." << endl;
		}else{
			switch (pozice) {
			case Prvni:
				listStudentu.VlozPrvni(student);
				break;
			case Predchozi:
				listStudentu.VlozPredchudce(student);
				break;
			case Nasledujici:
				listStudentu.VlozNaslednika(student);
				break;
			case Posledni:
				listStudentu.VlozPosledni(student);
				break;
			}
		}
	};

	void Zrus(void){
		listStudentu.Zrus();
	};
};


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
#pragma once
#include <iostream>
#include <string>
using namespace std;

class Student {
private:
	string jmeno; 
	string prijmeni; 
	string identifikacniCislo;
public:
	Student(){
		jmeno = "";
		prijmeni = "";
		identifikacniCislo = "";
	};

	Student(const string &jmeno, const string &prijmeni, const string &identifikacniCislo){
		this->jmeno = jmeno;
		this->prijmeni = prijmeni;
		this->identifikacniCislo = identifikacniCislo;
	};

	string GetJmeno(){
		return jmeno;
	};
};

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
#include "EvidenceStudentu.h"
#include "Student.h"
#include <iostream>
#include <string>
#include <exception>

void vypisMenu() {
	cout << endl;
	cout << "[1] | Zadat noveho studenta do seznamu" << endl;
}

int main(int argc, char **argv, char **env) {
	try{
		EvidenceStudentu evidence;
		int volba;
		do {
			Student *s;
			Student tmp;
			string pom;
			string jmeno;
			string prijmeni;
			string identifikacniCislo;
			vypisMenu();
			cout << endl << "Zadej volbu: ";
			cin >> pom;
			volba = atoi(pom.c_str());
			if(volba < 0 || volba > 5) {
				cout << "Byla zadana spatna hodnota, zadej cislo v rozsahu 0 - 5!" << endl;
				continue;
			}
			switch(volba) {
			case 1:
				cout << "Zadejte jmeno: ";
				cin >> jmeno;
				cout << "Zadejte prijmeni: ";
				cin >> prijmeni;
				cout << "Zadejte identifikacni cislo: ";
				cin >> identifikacniCislo;
				s = new Student(jmeno, prijmeni, identifikacniCislo);
				evidence.PridaniStudenta(*s);
				cout << "Student byl pridan do seznamu." << endl;
				break;
			case 2:
...
		} while(volba != 0);
		cout << "Konec programu" << endl;
	} catch (domain_error &e) {
		std::cout << e.what() << std::endl;	
	} catch (exception &e) {
		cout << e.what() << endl;
	}
}
Topic archived. No new replies allowed.