C++/Java String Reverse (문자열 뒤집기)
C++/Java String Reverse (문자열 뒤집기)
2015.03.25C++을 주로 사용하다 보니 Java는 모르거나 기억이 안 나는 내용은 주로 검색을 해서 해결한다.우선 C++에서는 문자열을 뒤집을 때 다음과 같이 한다.12345678910111213#include #include #include int main() { std::string original_string("Dolpang2 Lee"); std::string reversed_string = original_string; // String reverse std::reverse(reversed_string.begin(), reversed_string.end()); std::cout
자료구조 How to Naming?
자료구조 How to Naming?
2015.03.23자료구조 How to Naming?123456789101112131415161718192021222324252627282930313233343536#include #include #include #include int main() { std::string word; std::vector words; // 복수명사화 std::vector wordVector; // 컨테이너 종류 명시 std::vector wordContainer; // 컨테이너로 추상화 for (;;) { printf("Enter the word: "); std::cin >> word; if (word == "quit") { break; } words.push_back(word); wordVector.push_back(word); word..
프로그래머 추천도서 64선 / 구입 링크 및 개정판 정리
프로그래머 추천도서 64선 / 구입 링크 및 개정판 정리
2015.03.11The Pragmatic Programmer: From Journeyman to Master The Pragmatic Programmer: From Journeyman to Master / Andrew Hunt, David Thomas 실용주의 프로그래머 / 옮긴이: 김창준, 정지호 Code Complete: A Practical Handbook of Software Construction, Second Edition Code Complete: A Practical Handbook of Software Construction, Second Edition / Steve McConnell CODE COMPLETE 2nd Edition - 절판 / 옮긴이: 서우석 Refactoring: Improving th..
Top 100 소프트웨어 공학 추천 도서
Top 100 소프트웨어 공학 추천 도서
2015.03.091. Code Complete: A Practical Handbook of Software Construction, Second Edition / Steve McConnell원서 구입 링크 / 번역서 구입 링크2. Head First Design Patterns / Eric Freeman, etc원서 구입 링크 / 번역서 구입 링크3. Rapid Development / Steve McConnell원서 구입 링크 / 번역서 구입 링크(절판)4. Design Patterns: Elements of Reusable Object-Oriented Software / Erich Gamma원서 구입 링크 / 번역서 구입 링크5. Applied Cryptography: Protocols, Algorithms, and..
Dev-C++ 관련 잡담
Dev-C++ 관련 잡담
2015.02.20얼마 전 페이스북 생활코딩 그룹에서 알게 되었는데개발이 중단된 줄 알았던 Dev-C++ 의 개발이 오픈소스 형태로 다시 개발되고 있다는 말을 들었다.현재는 Orwell에서 개발하는 것 같고 가장 최신 배포는 2015년 2월 1일 자의 5.9.2버전이다.내 기억의 마지막 배포는 4.9.2로 기억하는데... 모르는 사이에 많은 버전업이 있었다.4.8.1의 GCC를 컴파일러로 사용하므로 C++11이나 일부 C++14 기능도 사용 가능할 것으로 보인다윈도우즈 환경에서 Visual Studio를 제외한 C++ IDE로는 참 괜찮다고 생각하는 Dev-C++이기 때문에 블로그에 남겨놓는다.개발 홈페이지 주소는 다음과 같다.http://orwelldevcpp.blogspot.kr/
IntelliJ/PhpStorm SQL dialect is not configured 해결
IntelliJ/PhpStorm SQL dialect is not configured 해결
2014.12.13IntelliJ/PhpStorm SQL dialect is not configured 해결 PhpStorm에서 작업 중 SQL dialect is not configured 관련 Warning이 있어서 해결하였다. Warning이지만 찝찝해서 ㅡㅡ^ 검색해도 잘 나오지 않아서 포스팅 합니다. Setting - Project Setting - SQL Dialects 항목에서 화면에서의 붉은 사각형 부분인 SQL Dialect 부분에서 사용하는 DBMS를 선택하시면 됩니다. 디렉토리 별로도 설정가능하고 파일별로도 설정가능하네요. 제가 하는 프로젝트에서는 MySQL만을 사용하므로 MySQL로 통일했습니다.
PHP에서 넘겨받은 변수 다시 전달
PHP에서 넘겨받은 변수 다시 전달
2014.12.07https://kldp.org/node/110969 간단하게 말하면 input tag를 hidden으로 설정 후 전달하면 된다.
Database Tuple 자동 생성을 지원하는 페이지
Database Tuple 자동 생성을 지원하는 페이지
2014.11.26http://www.mockaroo.com/ 최대 100,000개의 Tuple을 CSV, JSON, SQL 그리고 Excel 포맷으로 자동 생성을 지원하는 사이트입니다. 웹페이지 밑에는 왜 테스트 케이스가 중요한지도 설명되어있네요^^
[C/C++]Binary 파일 줄 바꿈 방법
[C/C++]Binary 파일 줄 바꿈 방법
2014.11.031 ofstream myfile("jee.bin",ios::app);C++에서 다음과 같이 Binary 파일을 생성하고 내용을 abc def ghi 와 같이 줄 바꿈 해서 출력하고자 할 때 Text 파일처럼 1 myFile
MySQL 회원 정보 테이블 생성
MySQL 회원 정보 테이블 생성
2014.10.261 create table personal_info( 2 id char(12), 3 password char(12) not null, 4 name char(10) not null, 5 date_of_birth date not null, 6 phone_number char(13) not null, 7 email char(32) not null, 8 PRIMARY KEY(id), 9 UNIQUE KEY(email), 10 UNIQUE KEY(phone_number) 11 );id: 최대 12글자까지, Front End에서 8~12자리수 확인 / 영어(대소문자), 숫자 조합 정규식 확인password: 최대 12글자까지, Front End에서 8~12자리수 확인 / 영어(대소문자), 숫자, 특수문자 조합 정규..
OpenCV Machine Learning(Tree 구조) 참고자료
OpenCV Machine Learning(Tree 구조) 참고자료
2014.10.051 #include "opencv2/ml/ml.hpp" 2 #include "opencv2/core/core_c.h" 3 #include 4 #include 5 6 void help() { 7 printf( 8 "\nThis sample demonstrates how to use different decision trees and forests including boosting and random trees:\n" 9 "CvDTree dtree;\n" 10 "CvBoost boost;\n" 11 "CvRTrees rtrees;\n" 12 "CvERTrees ertrees;\n" 13 "CvGBTrees gbtrees;\n" 14 "Call:\n\t./tree_engine [-r ] [-c] \n" 15 ..
Run-Time Check Failure #2 – Stack around the variable 'x' was corrupted
Run-Time Check Failure #2 – Stack around the variable 'x' was corrupted
2014.08.08Visual Studio로 C/C++ 프로그래밍을 작성하는 입문자들이 간혹 볼 수 있는 에러메시지이다.원인은 여러 가지가 있겠으나 scanf의 서식 문자열을 잘못 설정했을 때 나타난다.다음은 문제의 메시지가 나타나는 소스코드이다. 1 #include 2 #include 3 4 int main(void) { 5 short x = 0; 6 7 scanf(" %d", &x); 8 printf("%d\n", x); 9 10 return EXIT_SUCCESS; 11 }뭔가 이상하지 않은가? short도 정수형 변수고 scanf 역시 %d로 잘 받고 있는 것 같은데...어찌 됐건 문제는 역시 scanf의 서식 문자열이다. detail에 약하면 항상 이런 문제가 생긴다. 위 사진은 www.cppreference.c..