c++ 질문드립니다...
가랑비
1번코드대신 2번코드를 사용하면 왜 더 간단한지 자세히 설명좀 부탁드리겠습니다ㅜㅜ=====================================================1번 코드=====================================================#include iostreamusing namespace std;
struct word{ char* str; // 각 단어의 내용 int count; // 각 단어의 사용 빈도};
int max_of_words = 10; // 전체 words 배열의 크기int num_of_words =0; //입력된 words의 개수word *words = null; //동적 메모리 배열의 주소
int findwords (const char *s);void increase () ;void countwords (char *s);voidshowword();void removeall();
int main (){words = new word[max_of_words];memset(words, 0 ,sizeof (word)*max_of_words);
cout 문자열을 입력하세요 . 종료하려면 ctrl +z을 입력하세요. \n;while(true){ char buffer[128];cin. getline(buffer, 128);countwords (buffer);if(cin.eof)())break;}showwords();removeall();
return 0;}
void countwords(char *s){const char * delimiter = ,.?!\t\n;char *token = strtok(s, delimiter);while(token != null){int index = findwords (token);if (index == -1){if (num_of_words = max _of_words)increase ();else{words[num_of_words].str = new char [strlen (token)+1];strcpy(words[num_of_words].str, token);words[num_of_words]. count=1;num_of_words++;}}else{words [index].count++;}token = strtok (null, delimiter);}}
int findwords(const char *s){for (int i = 0 ; i num_of_words ; i++)if (strcmp(words[i].str,s)==0)return i ;return -1; //단어 검색 실패}
void increase (){max_of_words += 10;
word *tmp = words;words = new word [max_of_words]; //증가된 크기로 배열 생성memcpy(words, tmp, sizeof (word)* num_of_words);delete [] tmp;}
void showwords(){for (int i=0; i num_of_words; i++)cout words [i].str : words[i]. count 번 사용 \n;}
void removeall(){for(int i = 0;i num_of_words ; i++)delete [] words [i].str;delete [] words;}
=====================================================2번 코드=====================================================#include iostream#include string#include vectorusing namespace std;
struct WORD{string str; // 각 단어의 내용int count; // 각 단어의 사용빈도};
vector WORD* words; // WORD 구조체 포인터를 저장하는 벡터 객체
int FindWords(const string& s); // 동일 문자열 검색void CountWords(const string& s); // 문자열 카운트void ShowWords(); // 해당 문자열을 보여줌void RemoveAll(); // 할당된 메모리 해제
int main(){cout 문자열을 입력하세요. 종료하려면 Ctrl+Z를 입력하세요.\n; string buffer;while( cin buffer ) CountWords(buffer);ShowWords () ;RemoveAll () ;
return 0;}
void CountWords(const string& s){int index = FindWords(s);if ( index == -1){ WORD *pWord = new WORD; // 구조체 포인터(동적 메모리 할당) pWord-str = s; pWord-count = 1; words.push_back(pWord); // 배열 원소 추가}else{ words[index]-count++;}}
int FindWords(const string& s) //같은 문자열이 있는지 검색{for(int i = 0 ; i words.size() ; i++) if ( words[i]-str == s) return i;return -1; // 동일한 단어 검색 실패}
void ShowWords() //해당 문자열을 보여줌{for(int i = 0 ; i words.size() ; i++) cout words[i]-str : words[i]-count 번\n;}
void RemoveAll () // 할당된 메모리 해제(반납){for(int i = 0 ; i words.size() ; i++) delete words[i];}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
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 |