10 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
/*
* Struct für die einzelnen Elemente
*/
struct TelBuchEintrag{
char *name;
char *telNummer;
TelBuchEintrag *nextEintrag;
};
1
2
3
4
5
6
7
8
9
/*
* Neuen Telefonbucheintrag hinzufuegen
*/
bool addEntry(char* text, char* nummer){
TelBuchEintrag *neuerEintrag = new(TelBuchEintrag);
neuerEintrag->name = text;
neuerEintrag->telNummer = nummer;
neuerEintrag->nextEintrag = NULL;
}
Quote(reneeb) Fri Apr 23 14:37:01 [-bash]
~/Tests/cpp 11> g++ Telefonliste.cpp
Telefonliste.cpp: In function `bool addEntry(char*, char*)':
Telefonliste.cpp:49: `letzerEintrag' undeclared (first use this function)
Telefonliste.cpp:49: (Each undeclared identifier is reported only once for each
function it appears in.)
Telefonliste.cpp:56: `struct TelBuchEintrag' has no member named `next'
Telefonliste.cpp: In function `char* getNummer()':
Telefonliste.cpp:86: `struct TelBuchEintrag' has no member named `nummer'
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
/*
* Programm, das eine Telefonliste erstellt. Hier koennen dynamisch neue Elemente
* hinzugefuegt werden.
* Autor: Renee Baecker
* Version: 0.1
* Datum: 23.04.2004
*/
#include <iostream>
#include <assert.h>
using namespace std;
/*
* Struct für die einzelnen Elemente
*/
typedef struct tagTelBuchEintrag{
char *name;
char *telNummer;
struct tagTelBuchEintrag *nextEintrag;
}TelBuchEintrag, *PTelBuchEintrag;
/*
* Globale Variablen zur Navigation innerhalb des Telefonbuchs
*/
TelBuchEintrag *ersterEintrag; //Zeiger auf den ersten Telefonbucheintrag
TelBuchEintrag *letzterEintrag; //Zeiger auf den letzten Telefonbucheintrag
long anzahlEintraege; //Anzahl der Eintraege insgesamt
/*
* Funktion zur Initialisierung des Telefonbuchs
*/
void initTelBuch(){
ersterEintrag = NULL;
letzterEintrag = NULL;
anzahlEintraege = 0;
}
/*
* Neuen Telefonbucheintrag hinzufuegen
*/
bool addEntry(char* text, char* nummer){
TelBuchEintrag *neuerEintrag = new(TelBuchEintrag);
neuerEintrag->name = text;
neuerEintrag->telNummer = nummer;
neuerEintrag->nextEintrag = NULL;
if(!letzerEintrag){ // wenn noch keine Eintraege vorhanden sind
ersterEintrag = neuerEintrag;
letzterEintrag = neuerEintrag;
anzahlEintraege++;
}
else{
TelBuchEintrag *tmpEintrag = letzterEintrag;
tmpEintrag->next = neuerEintrag;
letzterEintrag = neuerEintrag;
anzahlEintraege++;
}
return true;
}
/*
* Funktion, die den Namen zurueckgibt
*/
char* getName(){
char *name;
assert(anzahlEintraege);
if(anzahlEintraege){
name = ersterEintrag->name;
}
return name;
}
/*
* Funktion, die die Nummer zurueckgibt
*/
char* getNummer(){
char *nummer;
assert(anzahlEintraege);
if(anzahlEintraege){
nummer = ersterEintrag->nummer;
}
return nummer;
}
/*
* Funktion, die das erste Listenelement loescht.
*/
void delListElement(){
TelBuchEintrag *alterEintrag;
assert(anzahlEintraege);
if(anzahlEintraege){
alterEintrag = ersterEintrag;
ersterEintrag = ersterEintrag->nextEintrag;
delete alterEintrag;
}
}
/*
* Hauptprogramm
*/
int main(){
initTelBuch();
addEntry("Renee","0180/5632893");
cout<<getName()<<" - "<<getNummer()<<endl;
return 0;
}
Quote(reneeb) Fri Apr 23 14:46:07 [-bash]
~/Tests/cpp 12> g++ Telefonliste.cpp
Telefonliste.cpp: In function `bool addEntry(char*, char*)':
Telefonliste.cpp:49: `letzerEintrag' undeclared (first use this function)
Telefonliste.cpp:49: (Each undeclared identifier is reported only once for each
function it appears in.)
Telefonliste.cpp:56: `struct tagTelBuchEintrag' has no member named `next'
Telefonliste.cpp: In function `char* getNummer()':
Telefonliste.cpp:86: `struct tagTelBuchEintrag' has no member named `nummer'
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
/*
* Programm, das eine Telefonliste erstellt. Hier koennen dynamisch neue Elemente
* hinzugefuegt werden.
* Autor: Renee Baecker
* Version: 0.1
* Datum: 23.04.2004
*/
#include <iostream>
#include <assert.h>
using namespace std;
/*
* Struct für die einzelnen Elemente
*/
typedef struct tagTelBuchEintrag{
char *name;
char *telNummer;
struct tagTelBuchEintrag *nextEintrag;
}TelBuchEintrag, *PTelBuchEintrag;
/*
* Globale Variablen zur Navigation innerhalb des Telefonbuchs
*/
TelBuchEintrag *ersterEintrag; //Zeiger auf den ersten Telefonbucheintrag
TelBuchEintrag *letzterEintrag; //Zeiger auf den letzten Telefonbucheintrag
long anzahlEintraege; //Anzahl der Eintraege insgesamt
/*
* Funktion zur Initialisierung des Telefonbuchs
*/
void initTelBuch(){
ersterEintrag = NULL;
letzterEintrag = NULL;
anzahlEintraege = 0;
}
/*
* Neuen Telefonbucheintrag hinzufuegen
*/
bool addEntry(char* text, char* nummer){
TelBuchEintrag *neuerEintrag = new(TelBuchEintrag);
neuerEintrag->name = text;
neuerEintrag->telNummer = nummer;
neuerEintrag->nextEintrag = NULL;
if(!letzterEintrag){ // wenn noch keine Eintraege vorhanden sind
ersterEintrag = neuerEintrag;
letzterEintrag = neuerEintrag;
anzahlEintraege++;
}
else{
TelBuchEintrag *tmpEintrag = letzterEintrag;
tmpEintrag->nextEintrag = neuerEintrag;
letzterEintrag = neuerEintrag;
anzahlEintraege++;
}
return true;
}
/*
* Funktion, die den Namen zurueckgibt
*/
char* getName(){
char *name = NULL;
assert(anzahlEintraege);
if(anzahlEintraege){
name = ersterEintrag->name;
}
return name;
}
/*
* Funktion, die die Nummer zurueckgibt
*/
char* getNummer(){
char *nummer = NULL;
assert(anzahlEintraege);
if(anzahlEintraege){
nummer = ersterEintrag->telNummer;
}
return nummer;
}
/*
* Funktion, die das erste Listenelement loescht.
*/
void delListElement(){
TelBuchEintrag *alterEintrag;
assert(anzahlEintraege);
if(anzahlEintraege){
alterEintrag = ersterEintrag;
ersterEintrag = ersterEintrag->nextEintrag;
delete alterEintrag;
}
}
/*
* Hauptprogramm
*/
int main(){
initTelBuch();
addEntry("Renee","0180/5632893");
cout<<getName()<<" - "<<getNummer()<<endl;
return 0;
}
10 Einträge, 1 Seite |