How to make search program in phone book by number

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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/// Phonebook project
//===============================

#include <iostream>
#include <conio.h>
#include <string>
using namespace std;


//prototypes
void printline(char, int);
bool name_valid(string);
bool mob_valid(string);


class contact
{
    string name;
    string mob;
    public:
    	//Initialize the contact by a default value
        contact(): name(""), mob("")
        {}
        
        // Shows all contacts
        bool show()
        {
            if(name != "")
            {
                cout << name << "\t" << mob << endl;
                return 1; //Indicates success
            }
            else
                return 0; //Indicates failure
        }
        
        //Search
        bool show(string search_term)
        {
            if(search_term == name)
            {
                cout << name << "\t" << mob << endl;
                return 1;
            }
            else
                return 0;
        }
        
        //Checks whether the name exists or not
        bool name_exists(string tname)
        {
            if(tname == name)
                return 1;
            else
                return 0;
        }
        
        //The contact object is initialized by valid values
        bool add(string new_name, string new_mob)
        {
            if(name=="")
            {
                name = new_name;
                mob = new_mob;
                return 1; // Success
            }
            else
                return 0; // Failure
    
        }
        
};



int main()
{
	contact person[100];

	string temp_name, temp_mob;
	int choice, i, counter;
	bool flag;
	bool cancel_flag;

	cout << "**** PHONEBOOK ******" << endl;


	do
	{
		cout << "\n\n\n";
		printline('-', 20);
		cout << "1. Memasukkan Data" << endl
			<< "2. Menampilkan Data" << endl
			<< "3. Mencari Data Berdasar Nama" << endl
			<< "4. Mencari Data Berdasar No. Telfon" << endl
			<< "5. Keluar" << endl
			<< "Masukkan Pilihan Anda : ";
		cin >> choice;

		system("cls");
		printline('-', 20);
		cancel_flag = 0;
		flag = 0;
		counter = 0;

		switch (choice)
		{
		case 1:
			cout << "Add New Contact\t\t\t\tpress $ to cancel" << endl;
			printline('-', 20);
			counter = 0;

			//Berulang hingga nama dan no benar
			do
			{
				flag = 0;
				if (counter)
					cout << "Try again\t\t\t\tpress $ to cancel"
					<< endl;

				//counts how many times the do-while loop executes
				counter++;

				cout << "Name: "; cin >> temp_name;

				//Cancel operation
				if (temp_name == "$")
				{
					cancel_flag = 1;
					break;
				}
				cout << "Mobile No.: "; cin >> temp_mob;

				//Cancel operation
				if (temp_mob == "$")
				{
					cancel_flag = 1;
					break;
				}

				//Check whether name exists
				for (i = 0; i<100; i++)
					if (person[i].name_exists(temp_name))
					{
						cout << "Kontak sudah ada!"
							"Masukkan nama lain."
							<< endl;
						flag = 1;
						break;
					}

			} while (!name_valid(temp_name) ||
				flag ||
				!mob_valid(temp_mob));

			if (cancel_flag)
			{
				system("cls");
				break;
			}


			//Memasukkan kontak ke buku telfon    
			for (i = 0; i<100; i++)
				if (person[i].add(temp_name, temp_mob))
				{
					cout << "Berhasil Menambah Kontak" << endl;
					flag = 1;
					break;
				}

			if (!flag)
				cout << "Memory Kontak Penuh! Hapus Beberapa Kontak."
				<< endl;
			break;

		case 2:
			cout << "Menampilkan Kontak" << endl;
			printline('-', 20);

			for (i = 0; i<100; i++)
				if (person[i].show())
					flag = 1;

			if (!flag)
				cout << "Tidak ada kontak yang ditemukan!" << endl;
			break;

		case 3: //search contact by name
			do
			{
				if (counter)
					cout << "Coba lagi" << endl;
				counter++;
				cout << "Cari Nama : \t\t\t\tpress $ to cancel\n";
				cin >> temp_name;

				//Cancel Operation
				if (temp_name == "$")
				{
					system("cls");
					break;
				}

				for (i = 0; i<100; i++)
					if (person[i].show(temp_name))
					{
						flag = 1;
						break;
					}

				if (!flag)
					cout << "Kontak tidak ditemukan" << endl;
			} while (!flag);

			break;

		case 4: //search contact by number
			do
			{
				if (counter)
					cout << "Coba lagi" << endl;
				counter++;
				cout << "Cari Nomor : \t\t\t\tpress $ to cancel\n";
				cin >> temp_mob;

				//Cancel Operation
				if (temp_mob == "$")
				{
					system("cls");
					break;
				}

				for (i = 0; i<100; i++)
					if (person[i].show(temp_name))
					{
						flag = 1;
						break;
					}

				if (!flag)
					cout << "Kontak tidak ditemukan" << endl;
			} while (!flag);

			break;

		case 5:
			return 0;
			break;

		}
	} while (1);

	_getch();
	return 0;
}
//prints a line
void printline(char ch, int size)
{
	for (int i = 0; i<size; i++)
		cout << ch;
	cout << "\n";
}


//Contact name validation
bool name_valid(string tname)
{

	if (tname.size()>20)
	{
		cout << "Nama Salah!\nMasukkan Maks 20 Karakter dan Tanpa Spasi!"
			<< endl;
		return 0;
	}
	else if (tname == "")
	{
		cout << "Nama Salah!\nNama tidak boleh kosong!" << endl;
		return 0;
	}
	else
		return 1;
}

//mobile number validation
bool mob_valid(string tmob)
{
	if (tmob.size()>13 || tmob.size()<10)
	{
		cout << "Nomor salah\n"
			"Masukkan Nomor Antara 10 - 13 digit" << endl;
		return 0;
	}
	else if (tmob == "")
	{
		cout << "No salah\n"
			"Nomor tidak boleh kosong" << endl;
		return 0;
	}
	else
		return 1;
}


Hey guys, in case 3, it's for searching contact in phone book by name, and i have problem in case 4, it's for searching contact in phone book by number, can you give me the correct algorithm for my Case 4 plz, thankss.
Last edited on
You have already posted two threads:
http://www.cplusplus.com/forum/general/252825/
http://www.cplusplus.com/forum/general/252838/

That is double-posting; waste of everybody's time, including yours.
Topic archived. No new replies allowed.