heap storage에 메모리 할당함으로 char의 제한 없애기
하양이
질문 제목 :
heap storage에 메모리 할당함으로 char의 제한 없애기
현재 코드는 아래의 밑줄그어져있는 부분처럼 프로그램 종료 조건과 인풋 글자수가 제한되어있습니다.
heap storage도 쓰지 말라고해서 전혀 쓰지 않았구요.
여기서 heap storage를 사용하는 코드로 이러한 제한들을 없애고 싶은데 자꾸 오류가 나네요..
제가 정말 약한 부분이라... ㅠㅠ 도움좀 부탁드립니다
(문제 원문: modify your program so that there is no fixed limit on the size of a name in the input. the only limit should be the amount of available memory. you may use heap storage.)
질문 내용 :
기존의 프로그램 설명------------------------------------------------------------------------------scoreboard.c: 스탠다드 아웃풋을 통해 커맨드를 읽고 다음과 같은 커맨드를 수행한다.void score(char *string int number);
플레이어의 이름 string과 점수 number를 기록한다.
output은 없고, number는 -999999999와 999999999사이의 정수이다.void best(char *string);
한줄에 best string number 식으로 output을 한다.
여기서 number는 이름 string의 지금까지의 최고점수를 뜻한다.
만약 그 플레이어의 점수가 기록되지 않았다면 number대신에 ?를 output한다.void highscore(void);
한줄에 highscore number 식으로 output을 한다.
여기서 number는 지금까지의 최고점수를 뜻한다.
만약 어떤 점수도 기록되지 않았다면 highscore ?를 output한다.void disqualify(char *symbol);
이름이 symbol 인 모든 점수들을 다 제거한다.
highscore 커맨드는 이 플레이어의 의한 점수를 다 제외할것이다.
disqualify 이후에도 score 커맨드를 통해 다시 게임에 참가할수있다.void leaders(void);
한줄에 leaders 최고득점자이름들을 output 한다.
한 사람의 이름전에는 single space를 output 한다.
이름은 ascii에서의 사전순서로 나열한다.
만약 leader가 없다면 leaders ? 를 output 한다.프로그램은 3000개의 유효 커맨드 이후나 eof 중 먼저 발생시 종료된다.
만약 input name이 20자를 초과한다면, 전체의 이름을 다 읽되 첫20자까지만 고려한다.
heap storage를 써서는 안된다.readstring.h, readstring.c: int readstring(char *s, int n);정수 n까지의 string c를 읽습니다.예제 input
score fredflintstonefrombedrock 10
score wilma 20
score fredflintstonefrombe 20
highscore
score betty 30
highscore
best fredflintstonefrombedrock
score fredflintstonefrombedrock 25
best fredflintstonefrombeyond
best barney
score a 250
score b 200
score c 300
score d 250
disqualify c
highscore
best c
leaders예제 output
highscore 20
highscore 30
best fredflintstonefrombe 20
best fredflintstonefrombe 25
best barney ?
highscore 250
best c ?
leaders a d
코드-------------------------------------------------------------------------------------------
#include stdio.h
#include string.h
#include stdlib.h
#include stdbool.h
#include readstring.h// 이름과 점수를 저장할 structure
typedef struct ascore{
char name[21];
int score;
} score;score scorelist[3000];
int scorecount=0;void score(char *string, int number){
strcpy(scorelist[scorecount].name,string); // scorelist에 이름을 기록
scorelist[scorecount].score=number; // scorelist에 점수를 기록
scorecount++; // 몇번째 score 펑션 call 인가
}void best(char *string){
int bestscore=-1000000000; // becuase the number is -999999999 at least
int counter=0;
int i,j; for(i=0;iscorecount;i++){
if(!strcmp(string,scorelist[i].name)){
if(scorelist[i].scorebestscore){
bestscore = scorelist[i].score;
}
}
} printf(best %s ,string);
if(bestscore==-1000000000){
printf(?\n);
}else{
printf(%d\n,bestscore);
}
}void highscore(){
int highscore=-1000000000;
int i; if (scorecount==0){
printf(highscore ?\n);
} else {
for(i=0;iscorecount;i++){
if(scorelist[i].scorehighscore){
highscore=scorelist[i].score;
}
}
printf(highscore %d\n,highscore);
}
}void disqualify (char *symbol){
int i;
for(i=0;iscorecount;i++){
if(!strcmp(symbol,scorelist[i].name)){
scorelist[i].score=-1000000000;
}
}
}void leaders(){
int i,j;
int leadingscore=-1000000000;
char leaders[3000][21];
char temp[21];
int leaderscount=0; // find the real leadingscore
if(scorecount==0){
printf(leaders ?\n);
return;
}else{
for(i=0;i=scorecount;i++){
if(scorelist[i].scoreleadingscore){
leadingscore=scorelist[i].score;
}
}
} // find the leaders
for(i=0;iscorecount;i++){
if(scorelist[i].score==leadingscore){
// find the duplications
for(j=0;jleaderscount;j++){
if(!strcmp(leaders[j],scorelist[i].name)) break;
}
if (j==leaderscount){ // the end of the array: no duplication
strcpy(leaders[leaderscount++],scorelist[i].name);
}
}
} // order leaders array in ascending order
for(i=0;ileaderscount-1;i++){
for(j=i;jleaderscount;j++){
if(strcmp(leaders[i],leaders[j])0){
&nbbsp; strcpy(temp,leaders[i]);
strcpy(leaders[i],leaders[j]);
strcpy(leaders[j],temp);
}
}
} // printing
printf(leaders );
for(i=0;ileaderscount;i++){
printf(%s ,leaders[i]);
}
printf(\n);
}int main(void){
int n=0, n_command=0;
while(n_command3000){ // program processes 3000 valid commands only
char str[21];
if (scanf(%s,str)!=1) break;
if (!strcmp(str,score)){
readstring(str,20);
scanf(%d,&n);
score(str,n);
n_command++;
} else if (!strcmp(str,best)){
readstring(str,20);
best(str);
n_command++;
} else if (!strcmp(str,highscore)){
highscore();
n_command++;
} else if (!strcmp(str,disqualify)){
readstring(str,20);
disqualify(str);
n_command++;
} else if (!strcmp(str,leaders)){
leaders();
n_command++;
}
}
}----------------------------------------------------------------------------------------
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |
2675297 | Prity 비트 발생기 | 한란 | 2024-11-16 |
2675249 | C책 좀 추천해 주세요 (2) | 딸기우유 | 2024-11-16 |
2675193 | 연습문제 17-1 질문입니다. | 한별나라 | 2024-11-15 |