목록Study (151)
Rylah's Study & Daily Life

# 1. 산술연산과 변수의 영도 # 3+4 (3+5)*6 2^6 5+8 #3^3 min(6,9,3) #최소값 함수 sqrt(100) #제곱근 max(5,3,2) #최대값 함수 a

man 2 time (타임 시스템 콜 메뉴얼) SYNOPIS : 이 형식으로 작성해야 함 DESCRIPTION : 기능 설명 Return Value : 반환 값 라이브러리에서 메뉴얼 부르기 man 3 memset SYNOPIS : 이 형식으로 작성해야 함 DESCRIPTION : 기능 설명 Return Value : 반환 값 리눅스에서 math와 같은 라이브러리를 컴파일 하기 위해서는 -lm 같은 명령어를 사용해야 한다.

Use Ubuntu 20.43 LTS(Long Term Support) https://ubuntu.com/download/desktop Download Ubuntu Desktop | Download | Ubuntu Ubuntu is an open source software operating system that runs from the desktop, to the cloud, to all your internet connected things. ubuntu.com use VMware Player https://www.vmware.com/kr/products/workstation-player.html 설치는 알아서 하실 수 있을겁니다. gcc 설치후 helloworld까지. gcc 설치 명령어는 sudo..

https://cran.r-project.org/bin/windows/base/ Download R-4.1.2 for Windows. The R-project for statistical computing. If you want to double-check that the package you have downloaded matches the package distributed by CRAN, you can compare the md5sum of the .exe to the fingerprint on the master server. You will need a version of md5sum for windows: both graphical and comm cran.r-project.org 1. R을 ..
https://blog.encrypted.gg/category/%EA%B0%95%EC%A2%8C/%EC%8B%A4%EC%A0%84%20%EC%95%8C%EA%B3%A0%EB%A6%AC%EC%A6%98 '강좌/실전 알고리즘' 카테고리의 글 목록 blog.encrypted.gg https://www.youtube.com/watch?v=LcOIobH7ues&list=PLtqbFd2VIQv4O6D6l9HcD732hdrnYb6CY Algorithm / C++ AcmicPC.net
https://www.nocodeprogram.com/ 코드없는 프로그래밍 Modern C++ 기본부터 고급까지 C++를 그냥 사용해오시던 직장인 기본부터 학습하고자 하는 학생 Modern C++ create Compilation Process create Memory Management create Optimized C++ create Parallel C++ create Design pattern 생산 www.nocodeprogram.com https://www.youtube.com/channel/UCHcG02L6TSS-StkSbqVy6Fg 코드없는 프로그래밍 프로그래밍에 중요한 지식들을 코드없이 설명합니다. www.youtube.com Modern C++ Coding Test Design Patter..
https://codepen.io/ CodePen An online code editor, learning environment, and community for front-end web development using HTML, CSS and JavaScript code snippets, projects, and web applications. codepen.io HTML5 / CSS3 / JavaScript Practice Site

이진 탐색이란? - 시간복잡도 O(logN)를 지닌 탐색 방법이다. - 선형 탐색(순차 탐색)에 비해 빠른 검색을 할 수 있다. - 대상이 정렬된 상태여야 한다. 위의 그림을 예시로 이야기하면 다음 단계를 거친다. 1. left = 0 , right = 5 ====> pivot = 2 -> 그래서 array[2]의 value인 3과 target 9를 비교해서 target이 크므로 left를 3으로 변경한다. 2. left = 3 right = 5 =====> pivot = 4 -> array[4]의 값이 target과 일치하므로 find를 하게 된다. 만약 값을 찾지 못하는 상황은 left