C언어로 워드클라우드 HTML 파일 생성 하기
수정한 소스 https://github.com/cepiloth/Word_Cloud-Using-C- 기반소스의 경우 linux gcc 환경에서 작성되어있다. #include using namespace std; 원본은 bits/stdc++.h 사용하여 아래처럼 Window 환경에 맞게 수정해야 한다. #include #include #include #include using namespace std; 소스 분석 out.txt 파일을 읽어서 stopwords에 정의된 글자가 아닌 경우에 list에 글자와 빈도수를 저장한다. vector stopwords = {",",".",";","is", "were","has","we","a","an", "the","of","from","to","when", "will",..
AI/빅데이터
2021. 3. 31. 12:10