Делаю заполнение, а когда вывожу в консоль, выводятся просто строки пустые
Write("Phone_book.txt", Myphone);
count++;
Sort("Phone_book.txt", Myphone, count);
Rewrite(Myphone, count);
Делаю заполнение, а когда вывожу в консоль, выводятся просто строки пустые
Write("Phone_book.txt", Myphone);
count++;
Sort("Phone_book.txt", Myphone, count);
Rewrite(Myphone, count);
Так я ж только что писал, что это другая отдельная проблема, не связанная с Rewrite и сортировкой:
Или если все пустые после добавления, то видимо сейчас что-то не так в Write или Sort.
void Sort(const char* filename, Phone*Myphone , int size)
{
for (int i = 0; i < size; i++)
{
for (int j = 0; j < size - 1; j++)
{
if (Myphone[j].FIO > Myphone[j + 1].FIO)
{
swap(Myphone[j], Myphone[j + 1]);
}
}
}
}
void Write(const char* filename, Phone *Myphone)
{
string name;
string ini;
string phone_number;
string email;
string res;
ofstream fout(filename, ofstream::app);
if (!fout)
{
cout << "Sorry i cant do it\n";
return;
}
else
{
cout << "Enter surname\n";
getline(cin, name);
cout << "Enter name or initials\n";
getline(cin, ini);
cout << "Enter phone number\n";
getline(cin, phone_number);
cout << "Enter E-mail\n";
getline(cin, email);
res = name + " " + ini + " " + phone_number + " " + email;
fout << res << "\n";
}
fout.close();
}
Ну они вроде не изменились
Так во Write надо просто в массив добавлять, а файл не трогать.
2.1.
Write
лучше переименовать вAdd
и в ней добавлять элемент в массив (size++
и записывать данные в последний элемент), вызыватьRewrite
.
Это просто дурдом какой-то. Ничего не работает. Вроде сделал как вы говорили, но все никак
#include<sstream>
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
struct Phone
{
string number;
string FIO;
string email;
};
void Write(Phone *Myphone, int size)
{
string name;
string ini;
string number;
string email;
for (int i = 0; i < size; i++)
{
cout << "Enter surname\n";
getline(cin, name);
cout << "Enter name or initials\n";
getline(cin, ini);
cout << "Enter phone number\n";
getline(cin, number);
cout << "Enter E-mail\n";
getline(cin, email);
Myphone[i].FIO = name[i] + " " + ini[i];
Myphone[i].number = number[i];
Myphone[i].email = email[i];
}
}
void Rewrite(Phone* Myphone, int size)
{
string res;
ofstream fout("Phone_book.txt", ofstream::app);
if (!fout)
{
cout << "Sorry i cant do it\n";
return;
}
else
{
for (int i = 0; i < size; i++)
{
res = Myphone[i].FIO + " " + Myphone[i].number + " " + Myphone[i].email;
fout << res << "\n";
}
}
fout.close();
}
int Read(const char* filename, Phone* Myphone)
{
int size = 0;
ifstream fin(filename);
if (!fin)
{
cout << "Your Phone book is empty\n";
}
else
{
string buff;
string name;
string ini;
int i = 0;
while (!fin.eof())
{
getline(fin, buff);
stringstream ss(buff);
ss >> name;
ss >> ini;
Myphone[i].FIO = name + " " + ini;
ss >> Myphone[i].number;
ss >> Myphone[i].email;
i++;
size++;
}
}
fin.close();
return size;
}
void Delete(Phone* Myphone, int size, int index)
{
string res;
for (int i = index; i < size - 1; i++)
{
Myphone[i].FIO = Myphone[i+1].FIO;
Myphone[i].number = Myphone[i+1].number;
Myphone[i].email = Myphone[i+1].email;
}
for (int i = 0; i < size - 1; i++)
{
res = Myphone[i].FIO + " " + Myphone[i].number + " " + Myphone[i].email;
}
cout << "Contact was succesfully deleted\n";
}
void Edit(Phone* Myphone, int size, int index)
{
string res;
string new_name;
string new_number;
string new_email;
for (int i = index; i < index + 1; i++)
{
Myphone[i].FIO = "";
Myphone[i].number = "";
Myphone[i].email = "";
cout << "Enter new name\n";
getline(cin, new_name);
cout << "Enter new number\n";
cin >> new_number;
cout << "Enter new E-mail\n";
cin >> new_email;
Myphone[i].FIO = new_name;
Myphone[i].number = new_number;
Myphone[i].email = new_email;
}
cout << "Contact was succesfully edited\n";
}
void Sort(const char* filename, Phone*Myphone , int size)
{
for (int i = 0; i < size; i++)
{
for (int j = 0; j < size - 1; j++)
{
if (Myphone[j].FIO > Myphone[j + 1].FIO)
{
swap(Myphone[j], Myphone[j + 1]);
}
}
}
}
void Show(Phone* Myphone, int size)
{
cout << "#\tFIO\t\tPhone Number\t\tE-mail\n";
for (int i = 0; i < size; i++)
{
cout << i + 1 << "\t" << Myphone[i].FIO << "\t" << Myphone[i].number << "\t" << Myphone[i].email << "\n";
}
}
int Find(Phone* Myphone,int size)
{
bool found = false;
int ans;
int index = 0;
string f_name, f_mail, f_number;
cout << "Find by: \n";
cout << "1 - Name\n";
cout << "2 - Number\n";
cout << "3 - E-mail\n";
cin >> ans;
cin.get();
switch (ans)
{
case 1:
cout << "Please enter Name: ";
getline (cin,f_name);
for (int i = 0; i < size; i++)
{
if (f_name == Myphone[i].FIO)
{
cout << "Found!\n";
cout << Myphone[i].FIO << ' ' << Myphone[i].number << ' ' << Myphone[i].email << "\n";
found = true;
index = i;
}
}
break;
case 2:
cout << "Please enter Number: ";
cin >> f_number;
for (int i = 0; i < size; i++)
{
if (f_number == Myphone[i].number)
{
cout << "Found!\n";
cout << Myphone[i].FIO << ' ' << Myphone[i].number << ' ' << Myphone[i].email << "\n";
found = true;
index = i;
}
}
break;
case 3:
cout << "Please enter E-mail: ";
cin >> f_mail;
for (int i = 0; i < size; i++)
{
if (f_mail == Myphone[i].email)
{
cout << "Found!\n";
cout << Myphone[i].FIO << ' ' << Myphone[i].number << ' ' << Myphone[i].email << "\n";
found = true;
index = i;
}
}
break;
default:
cout << "Wrong command\n";
break;
}
if (!found)
cout << "Sorry, there are no any data\n";
cout << "\n";
cin.clear();
return index;
}
void main()
{
int const size = 100;
Phone Myphone[size];
int index = 0;
int count = Read("Phone_book.txt", Myphone);
int ans;
do
{
cout << "Enter what you want to do\n";
cout << "1 - Find number\n";
cout << "2 - Show all numbers\n";
cout << "3 - Add number\n";
cout << "4 - Delete number\n";
cout << "5 - Edit number\n";
cout << "6 - Exit\n";
cin >> ans;
cin.get();
switch (ans)
{
case 1:
Find(Myphone, count);
break;
case 2:
Show(Myphone, count);
break;
case 3:
Write(Myphone, count);
count++;
Sort("Phone_book.txt", Myphone, count);
Rewrite(Myphone, count);
break;
case 4:
index = Find(Myphone, count);
Delete(Myphone, count, index);
count--;
Rewrite(Myphone, count);
break;
case 5:
index = Find(Myphone, count);
Edit(Myphone, count, index);
Sort("Phone_book.txt", Myphone, count);
Rewrite(Myphone, count);
break;
case 6:
cout << "Good bye!\n";
break;
default:
cout << "Wrong choice!\n";
break;
}
} while (ans != 6);
}
for (int i = 0; i < size; i++) { cout << "Enter surname\n";
Так тут наверно без цикла надо просто ввести один.
Ну и size до вызова увеличить, и писать в последний элемент.
Переделал, все равно не работает. Ввожу два элемента массива, если увеличиваю размер после вызова функции записи, то выводится первый элемент, а если после, то второй. Один элемент в любом случае продадает. То есть пропадает постоянно тот элемент, который после сортировки ниже. А оставшийся выводится в разных строках в зависимости от того где увеличил размер
Может как-то нужно поиграться с режимами открытия файлов? Я уже и не знаю что делать)
В любой непонятной ситуации надо добавлять отладочный вывод всего подряд, например всех переменных на каждой итерации цикла чтения.
Как организовать этот отладочный вывод в моем коде. Я не могу понять. Завтра сдавать программу, ничего не понимаю уже
void Rewrite(Phone* Myphone, int size) { ofstream fout("Phone_book.txt", ofstream::app);
Так он же перезаписывать весь файл должен, а не добавлять еще раз весь массив.
number = number[i];
что-то странное тут
Про ввод я так имел в виду:
#include<sstream>
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
struct Phone
{
string number;
string FIO;
string email;
};
int Add(Phone* Myphone, int size)
{
string name;
string ini;
string number;
string email;
cout << "Enter surname\n";
getline(cin, name);
cout << "Enter name or initials\n";
getline(cin, ini);
cout << "Enter phone number\n";
getline(cin, number);
cout << "Enter E-mail\n";
getline(cin, email);
Myphone[size].FIO = name + " " + ini;
Myphone[size].number = number;
Myphone[size].email = email;
size++;
return size;
}
void Rewrite(Phone* Myphone, int size)
{
string res;
ofstream fout("Phone_book.txt", ofstream::trunc);
if (!fout)
{
cout << "Sorry i cant do it\n";
return;
}
else
{
for (int i = 0; i < size; i++)
{
res = Myphone[i].FIO + " " + Myphone[i].number + " " + Myphone[i].email;
fout << res << "\n";
}
}
fout.close();
}
int Read(const char* filename, Phone* Myphone)
{
int size = 0;
ifstream fin(filename);
if (!fin)
{
cout << "Your Phone book is empty\n";
}
else
{
string buff;
string name;
string ini;
int i = 0;
while (!fin.eof())
{
getline(fin, buff);
stringstream ss(buff);
ss >> name;
ss >> ini;
Myphone[i].FIO = name + " " + ini;
ss >> Myphone[i].number;
ss >> Myphone[i].email;
i++;
size++;
}
}
fin.close();
return size;
}
void Delete(Phone* Myphone, int size, int index)
{
string res;
for (int i = index; i < size - 1; i++)
{
Myphone[i].FIO = Myphone[i + 1].FIO;
Myphone[i].number = Myphone[i + 1].number;
Myphone[i].email = Myphone[i + 1].email;
}
for (int i = 0; i < size - 1; i++)
{
res = Myphone[i].FIO + " " + Myphone[i].number + " " + Myphone[i].email;
}
cout << "Contact was succesfully deleted\n";
}
void Edit(Phone* Myphone, int size, int index)
{
string res;
string new_name;
string new_number;
string new_email;
for (int i = index; i < index + 1; i++)
{
Myphone[i].FIO = "";
Myphone[i].number = "";
Myphone[i].email = "";
cout << "Enter new name\n";
getline(cin, new_name);
cout << "Enter new number\n";
cin >> new_number;
cout << "Enter new E-mail\n";
cin >> new_email;
Myphone[i].FIO = new_name;
Myphone[i].number = new_number;
Myphone[i].email = new_email;
}
cout << "Contact was succesfully edited\n";
}
void Sort(const char* filename, Phone* Myphone, int size)
{
for (int i = 0; i < size; i++)
{
for (int j = 0; j < size - 1; j++)
{
if (Myphone[j].FIO > Myphone[j + 1].FIO)
{
swap(Myphone[j], Myphone[j + 1]);
}
}
}
}
void Show(Phone* Myphone, int size)
{
cout << "#\tFIO\t\tPhone Number\t\tE-mail\n";
for (int i = 0; i < size; i++)
{
cout << i + 1 << "\t" << Myphone[i].FIO << "\t" << Myphone[i].number << "\t" << Myphone[i].email << "\n";
}
}
int Find(Phone* Myphone, int size)
{
bool found = false;
int ans;
int index = 0;
string f_name, f_mail, f_number;
cout << "Find by: \n";
cout << "1 - Name\n";
cout << "2 - Number\n";
cout << "3 - E-mail\n";
cin >> ans;
cin.get();
switch (ans)
{
case 1:
cout << "Please enter Name: ";
getline(cin, f_name);
for (int i = 0; i < size; i++)
{
if (f_name == Myphone[i].FIO)
{
cout << "Found!\n";
cout << Myphone[i].FIO << ' ' << Myphone[i].number << ' ' << Myphone[i].email << "\n";
found = true;
index = i;
}
}
break;
case 2:
cout << "Please enter Number: ";
cin >> f_number;
for (int i = 0; i < size; i++)
{
if (f_number == Myphone[i].number)
{
cout << "Found!\n";
cout << Myphone[i].FIO << ' ' << Myphone[i].number << ' ' << Myphone[i].email << "\n";
found = true;
index = i;
}
}
break;
case 3:
cout << "Please enter E-mail: ";
cin >> f_mail;
for (int i = 0; i < size; i++)
{
if (f_mail == Myphone[i].email)
{
cout << "Found!\n";
cout << Myphone[i].FIO << ' ' << Myphone[i].number << ' ' << Myphone[i].email << "\n";
found = true;
index = i;
}
}
break;
default:
cout << "Wrong command\n";
break;
}
if (!found)
cout << "Sorry, there are no any data\n";
cout << "\n";
cin.clear();
return index;
}
void main()
{
int const size = 100;
Phone Myphone[size];
int index = 0;
int count = Read("Phone_book.txt", Myphone);
int ans;
do
{
cout << "Enter what you want to do\n";
cout << "1 - Find number\n";
cout << "2 - Show all numbers\n";
cout << "3 - Add number\n";
cout << "4 - Delete number\n";
cout << "5 - Edit number\n";
cout << "6 - Exit\n";
cin >> ans;
cin.get();
switch (ans)
{
case 1:
Find(Myphone, count);
break;
case 2:
Show(Myphone, count);
break;
case 3:
count = Add(Myphone, count);
Sort("Phone_book.txt", Myphone, count);
Rewrite(Myphone, count);
break;
case 4:
index = Find(Myphone, count);
Delete(Myphone, count, index);
count--;
Rewrite(Myphone, count);
break;
case 5:
index = Find(Myphone, count);
Edit(Myphone, count, index);
Sort("Phone_book.txt", Myphone, count);
Rewrite(Myphone, count);
break;
case 6:
cout << "Good bye!\n";
break;
default:
cout << "Wrong choice!\n";
break;
}
} while (ans != 6);
}
Добавил возврат size из Add на случай если захочется вводить больше 1 или проверять корректность ввода.
Как организовать этот отладочный вывод в моем коде.
например всех переменных на каждой итерации цикла чтения.
int Read(const char* filename, Phone* Myphone)
{
int size = 0;
ifstream fin(filename);
if (!fin)
{
cout << "Your Phone book is empty\n";
}
else
{
string buff;
string name;
string ini;
int i = 0;
while (!fin.eof())
{
getline(fin, buff);
cout << "i: " << i << " ";
cout << "buf: " << buff << "\n";
stringstream ss(buff);
ss >> name;
ss >> ini;
Myphone[i].FIO = name + " " + ini;
ss >> Myphone[i].number;
ss >> Myphone[i].email;
i++;
size++;
}
}
fin.close();
return size;
}
Ну все почти работает, но отладочный вывод не помог. Все равно с новым запуском программы появляется неполная строка с именем из последней строки. Но это уже не настолько страшно, в отличии от прошлых проблем. Хотя решить конечно хотелось бы и эту проблему. Вы очень помогли мне. Спасибо)
Но эта строка появляется только в консоли
дык отладочный вывод выводит это для файла с двумя элементами:
i: 0 buf: Green B. 9999 x
i: 1 buf: Smith J. 8888 z
i: 2 buf:
Enter what you want to do
что подтверждает догадку
может быть при чтении
beginer_38:
while (!fin.eof())
работает не так, как задумывалось, и останавливается позже
соответственно надо думать как исправить цикл чтения.
Например, просто пропускать пустые строки (или короткие, или с пустым именем/номером).
Это заодно позволит пропустить и пустые строки в середине файла или начале файла если вдруг они там оказались после ручного редактирования.
Например, просто пропускать пустые строки (или короткие, или с пустым именем/номером).
Это заодно позволит пропустить и пустые строки в середине файла или начале файла если вдруг они там оказались после ручного редактирования.
А есть для этого какой-то синтаксис? Типа fin.good или еще что-то?
Типа fin.good или еще что-то?
Зачем fin трогать, можно ж просто прочитанные из него строки проверять как угодно.
Попробовал сделать вот так
getline(fin, buff);
fin.get();
Но теперь съедается первая буква в последней строчке
Зачем fin трогать, можно ж просто прочитанные из него строки проверять как угодно.
“прочитанные из него строки” — то, что в buff
тут.
А как проверять buff, с помощью sizeof? И как пропустить эту строку? Я не знаю как
А как проверять buff, с помощью sizeof?
И как пропустить эту строку?
https://ru.wikipedia.org/wiki/Цикл_(программирование)#Досрочный_выход_и_пропуск_итерации