나를 위한 면접 (ALL)
· 약 21분
실무에 치이느라 기본적인 걸 까먹을까봐 정리해보자 정보처리 에서 컴퓨터 기초를 보면 되고. 지극히 주관적이라 정답이 아닐 수 있습니다
수학
미적분
편미분까진 안물어보더라
베이지안 확률
사후확률 = 가능도 * 사전확률 / 증거
// 붉은 점이 얼굴에 보일 때 수두 환자일 확률은 어떻게 구할까?
P(수두 | 붉은점) = P(붉은 점 | 수두) * P(수두) / P(붉은점)
자료구조
B Tree
m-원 트리의 단점임 한쪽으로 편중된 트리를 생성되는 경우를 보완하고자 루트노드로부터 리프노드의 레벨을 같도록 유지한 트리
BASIS FOR COMPARISON | B-TREE | BINARY TREE |
---|---|---|
Essential constraint | A node can have at max M number of child nodes(where M is the order of the tree). | A node can have at max 2 number of subtrees. |
Used | It is used when data is stored on disk. | It is used when records and data are stored in RAM. |
Height of the tree | logM N (where m is the order of the M-way tree) | log2 N |
Application | Code indexing data structure in many DBMS. | Code optimization, Huffman coding, etc. |
space complexity B-tree is O(n). Insertion and deletion time complexity is O(logn).
B+ Tree
B+은 index node와 data node로 구성