과정 설계: 10대 가수 순위표
4020 단어 과정 설계
4
#include<bits/stdc++.h>
using namespace std;
int cnt;
set<string> s; //
set<string>::iterator it;
map<string,int> m; // hash
map<string,string> mm; // hash
struct P
{
string name, song;
int num;
}p[10010];
bool cmp(P c, P d) {return c.num > d.num;}
void Sort() //
{
cnt = 0;
for(it=s.begin(); it!=s.end(); it++)
{
p[cnt].name = (*it);
p[cnt].num = m[(*it)];
p[cnt++].song = mm[(*it)];
}
sort(p,p+cnt,cmp);
}
void Solve_1() //
{
string name, song;
printf(" :");
cin >> name;
if(mm[name] == "")
{
printf(" :");
cin >> song;
mm[name] = song; // hash
}
s.insert(name);
m[name]++; // 1
cout << " " << name << " " << m[name] << " !
";
}
void Solve_2() //
{
if(s.size() < 10) puts(" , ");
else
{
for(int i = 0; i<10; i++)
cout << p[i].name << " 《" << mm[p[i].name] << "》
";
}
}
void Solve_3() //
{
string name;
printf(" :");
cin >> name;
cout << name << " :" << m[name] << "
";
}
void Solve_4() //
{
if(s.size() < 10) {puts(" "); return ;}
puts("
");
cout << " " << " " << endl;
cout << " " << " [ ]" << endl;
for(int i=0; i<38; i++) printf("-");
puts("");
for(int i=0; i<10; i++)
cout << " " << p[i].name << "[" << p[i].num << "]
";
cout << endl;
}
void Solve() //
{
cout << "***************************************" << endl;
cout << "* *" << endl;
cout << "*-------------------------------------*" << endl;
cout << "* 1. *" << endl;
cout << "* 2. *" << endl;
cout << "* 3. *" << endl;
cout << "* 4. *" << endl;
cout << "* 0. *" << endl;
cout << "***************************************" << endl;
cout << '
' << "Please select(1,2,3,4,0): " ;
}
int main()
{
string t;
char fname[100], fsong[100];
int fnum;
freopen("out.txt", "r", stdin); //
while(scanf("%s [%d] %s", fname,&fnum,fsong) != EOF)
{
string x = fname;
s.insert(x), m[x] = fnum, mm[x] = fsong;
}
Sort();
freopen("CON", "r", stdin); //
while(1)
{
Solve();
cin >> t;
if(t == "1") {Solve_1(); Sort();}
else if(t == "2") Solve_2();
else if(t == "3") Solve_3();
else if(t == "4") Solve_4();
else if(t == "0") break;
else puts(" !!!
");
}
freopen("out.txt", "w", stdout); //
for(int i=0; i<cnt; i++)
cout << p[i].name << " [" << p[i].num << "]" << p[i].song << endl;
fclose(stdin); fclose(stdout);
return 0;
}
파일에서 입력하는 것과 컨트롤러에서 입력하는 것을 서로 바꾸는 방법을 배웠다.txt 파일:
장학우[0]가 가는 길에 너 유환[0] 휘어진 달 주화건[0] 친구 유덕화[0] 오늘 양정여[0] 훈훈한 주걸륜[0] 토네이도 유석군[0] 난 즐거웠어 왕비[0] 팥 허숭[0] 부러진 다리 잔설 소다 그린[0] 또 만나.