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
|
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
class TvShow{
private:
struct Show{
string name, day, time, views;
Show *next;
Show(string n="", string d="", string t="", string v="", Show* h=NULL)
: name(n), day(d), time(t), views(v), next(h) {}
};
Show *head;
public:
TvShow() : head(NULL) {}
void Prepend(string n, string d, string t, string v){
if(!head) {
head = new Show(n,d,t,v,NULL);
}
else{
Show *newNode = new Show(n,d,t,v, head);
head = newNode;
}
}
void Display(){
Show *curr = head->next; ///
while (curr){
cout<< "Show: " << curr->name
<< "\nAir date: " << curr->day
<< "\nTime: " << curr->time
<< "\nViews: " << curr->views;
cout<< "\n\n";
curr = curr->next;
}
}
//~TvShow();
};
int main(){
ifstream Tvfile("TvShow.txt");
string tempname;
string tempday;
string temptime;
string tempviews;
TvShow myshow;
while(Tvfile){
getline(Tvfile, tempname);
getline(Tvfile, tempday);
getline(Tvfile, temptime);
getline(Tvfile, tempviews);
myshow.Prepend(tempname, tempday, temptime, tempviews);
}
Tvfile.close();
myshow.Display();
return 0;
}
|