일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- pandas
- label
- C++
- 채보
- YOLO
- Selenium
- OpenCV
- JSON
- ubuntu
- pytorch
- Linux
- 핑거스타일
- windows forms
- Python
- C
- SSH
- Docker
- Visual Studio
- 명령어
- mysql
- 프로그래머스
- LIST
- Numpy
- VS Code
- 기타 연주
- error
- C#
- pip
- paramiko
- 오류
- Today
- Total
목록C++ (5)
기계는 거짓말하지 않는다
JSON 데이터가 포함된 문자열 또는 출력에서 JSON 데이터만 파싱(parsing) 하는 간단한 예제이다.jsoncpp 라이브러리가 필요하다.Ubuntu에서 jsoncpp 라이브러리 설치sudo apt-get install libjsoncpp-devln -s /usr/include/jsoncpp/json/ /usr/include/json예제 코드#include #include #include #include // JSON 문자열 파싱std::vector extract_json_strings(const std::string& input_string) { std::vector json_strings; int start_brace_index = -1; int end_brace_index = ..
C++에서 헤더파일이나 소스코드에 다음과 같은 매크로를 사용할 수 있다.#ifdef __cplusplusextern "C" {#endif// functions...#ifdef __cplusplus}#endif#ifdef __cplusplus와 extern "C"를 사용한 위 구문은 C++ 코드에서 C 스타일의 함수 인터페이스를 사용하도록 하기 위한 것이다.이 구문은 C++ 컴파일러와 C 컴파일러 간의 링크 호환성을 유지하는 데 사용된다.#ifdef __cplusplus위 매크로의 의미는 C++ 코드가 컴파일되고 있음을 나타낸다.#ifdef __cplusplus는 C++ 컴파일러에서만 이 구문 내부의 코드를 실행하라는 의미이다.extern "C"extern "C"는 C++ 컴파일러에 이 블록 내의 함수 선..
프로그래머스 - 다음 큰 숫자 문제입니다. 주어진 자연수를 2진수로 변환했을 때, 1의 개수가 같고 주어진 자연수 보다 큰 숫자를 찾으면 됩니다. 주어진 자연수 보다 1 더 큰 숫자 부터 확인을 시작하고, 비트 연산자로 1을 왼쪽으로 밀면서 AND 연산하여 2진수 1의 개수를 확인합니다. #include #include using namespace std; int solution(int n) { int answer = n;// 주어진 자연수 보다 1 더 큰 숫자로 시작해야 함 int i, n_cnt = 0, bit_check = 1, check_cnt = 0; while(bit_check
class, struct 에 동적 할당하여 사용하는 포인터가 있다면 문제가 될 수 있다. 얕은 복사(Shallow Copy) #include #include using namespace std; class A { private: char * str; int num; public: A(const char* oStr, int oNum) { int len = strlen(oStr) + 1; str = new char[len]; strcpy_s(str, len, oStr); num = oNum; } void PrintData() { cout
우선순위 큐에 template 타입을 자료형만 주게 되면 기본은 max heap 이다. 벡터의 경우 sort 호출 시 기본은 오름차순이다. #include #include #include #include using namespace std; int main() { vector v; priority_queue pq; v.push_back(10); v.push_back(5); v.push_back(20); sort(v.begin(), v.end()); pq.push(10); pq.push(5); pq.push(20); cout