├── .all-contributorsrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── Comments.md │ ├── Enhancement.md │ ├── New_resources.md │ ├── Questions.md │ ├── Suggestions.md │ └── bug_report.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .yarnrc.yml ├── LICENSE ├── README.md ├── babel.config.js ├── docs ├── CA_and_OS │ ├── 01_컴퓨터의 구성.md │ ├── 02_CPU의 구조와 원리.md │ ├── 03_고정 소수점 & 부동 소수점.md │ ├── 04_패리티비트와 해밍코드.md │ ├── 05_프로세스와 스레드.md │ ├── 06_동기화 문제.md │ ├── 07_컨텍스트 스위칭.md │ ├── 08_인터럽트.md │ ├── 09_시스템 콜.md │ ├── 10_교착 상태.md │ ├── 11_CPU 스케줄링.md │ ├── 12_비선점 스케줄링.md │ ├── 13_선점 스케줄링.md │ ├── 14_동기 vs 비동기.md │ ├── 15_페이징 & 세그멘테이션.md │ ├── 16_페이지 교체 알고리즘.md │ ├── 17_단편화.md │ ├── 18_IPC.md │ ├── 19_가상 메모리.md │ ├── 20_캐시.md │ ├── 21_파일 시스템.md │ ├── 22_주소 바인딩.md │ ├── 23_CISC vs RISC.md │ ├── 24_파이프라이닝.md │ └── _category_.json ├── algorithms │ ├── 01_선택 정렬.md │ ├── 02_거품 정렬.md │ ├── 02_병합 정렬.md │ ├── 04_삽입 정렬.md │ ├── 05_퀵 정렬.md │ ├── 06_힙 정렬.md │ ├── 07_기수 정렬.md │ ├── 08_계수 정렬.md │ ├── 09_투포인터.md │ ├── 10_순열과 조합.md │ ├── 11.DFS와BFS.md │ ├── 12_최장 증가 수열.md │ ├── 13_최소 공통 조상.md │ ├── 14_동적 계획법.md │ ├── 15_비트마스크.md │ ├── 16_이분 탐색.md │ ├── 17_위상 정렬.md │ ├── 18_유니온 파인드.md │ ├── 19_다익스트라.md │ ├── 20_크루스칼.md │ └── _category_.json ├── database │ ├── 01_데이터베이스 기본 용어.md │ ├── 02_Key.md │ ├── 03_관계대수.md │ ├── 04_SQL injection.md │ ├── 05_JOIN.md │ ├── 06_SQL vs NOSQL.md │ ├── 07_SQL문.md │ ├── 08_이상현상과 함수종속성.md │ ├── 09_정규화.md │ ├── 10_인덱스.md │ ├── 11_트랜잭션.md │ ├── 12_트랜잭션 격리 수준.md │ ├── 13_데이터베이스 보안.md │ ├── 14_데이터베이스 모델링 설계_게시판 설계.md │ ├── 15_DB 모델링 설계_카카오톡 채팅방.mdx │ ├── 16_데이터베이스 회복.md │ └── _category_.json ├── design-pattern │ ├── 01_디자인 패턴개요.md │ ├── 02_어댑터 패턴.md │ ├── 03_싱글톤 패턴.md │ ├── 04_템플릿 메소드 패턴.md │ ├── 05_팩토리 메소드 패턴.md │ ├── 06_옵저버 패턴이란.md │ ├── 07_스트레티지 패턴.md │ └── _category_.json ├── dev_knowledge │ ├── 02_객체 지향 프로그래밍.md │ ├── 03_RESTful API란.md │ ├── 04_TDD란.md │ ├── 05_애자일은 무엇인가.md │ ├── 06_데브옵스란.md │ ├── 07_서드 파티란.md │ ├── 08_함수형 프로그래밍.md │ ├── 09_Git과Github.md │ ├── 10_MVC패턴.md │ └── _category_.json ├── intro.md ├── network │ ├── 01_OSI 7계층.md │ ├── 02_TCP&UDP.md │ ├── 03_TCP Handshake.md │ ├── 04_HTTP와 HTTPS차이.md │ ├── 05_공개키 암호, 대칭키 암호.md │ ├── 06_쿠키와 세션.md │ ├── 08_로드 밸런싱.md │ ├── 09_Blocking vs Non-Blocking.md │ └── _category_.json ├── tutorial-basics │ ├── _category_.json │ └── markdown-features.mdx └── 자료구조 │ ├── 01_배열 vs 연결리스트.md │ ├── 02_트리.md │ ├── 03_Stack vs Queue.md │ ├── 04_힙.md │ ├── 05_이진탐색트리.md │ ├── 06_B-Tree & B+Tree.md │ ├── 07_레드 블랙 트리.md │ ├── 08_해시 테이블.md │ ├── 09_트라이.md │ ├── 10_트리맵.md │ ├── 11_그래프.md │ └── _category_.json ├── docusaurus.config.js ├── interview ├── android │ ├── N사.md │ └── _category_.json ├── back-end │ └── _category_.json ├── culture-fit │ └── _category_.json ├── front-end │ ├── D사.md │ ├── N사 인턴.md │ ├── _category_.json │ └── 스타트업 C사.md └── intro.md ├── package.json ├── sidebarInterview.js ├── sidebars.js ├── src ├── components │ ├── HomepageFeatures.js │ └── HomepageFeatures.module.css ├── css │ └── custom.css └── pages │ ├── index.js │ ├── index.module.css │ └── markdown-page.md ├── static ├── .nojekyll ├── img │ ├── Data-Structure │ │ ├── Array_and_LinkedList │ │ │ ├── array.PNG │ │ │ ├── doubly_circular_linked_list.jpg │ │ │ ├── doubly_linked_list.jpg │ │ │ ├── doubly_linked_list_2.JPG │ │ │ ├── linked_list.PNG │ │ │ ├── linked_list_deletion_0.jpg │ │ │ ├── linked_list_deletion_1.jpg │ │ │ ├── linked_list_deletion_2.jpg │ │ │ ├── linked_list_deletion_3.jpg │ │ │ ├── linked_list_insertion_0.jpg │ │ │ ├── linked_list_insertion_1.jpg │ │ │ ├── linked_list_insertion_2.jpg │ │ │ └── singly_circular_linked_list.jpg │ │ ├── B-Tree │ │ │ ├── B+TreeStructure.png │ │ │ ├── B-TreeDelete.png │ │ │ ├── B-TreeDelete2.png │ │ │ ├── B-TreeInsertion.png │ │ │ ├── B-TreeStructure.png │ │ │ ├── B-TreeofOrder4.jpg │ │ │ └── TreeStructure.png │ │ ├── Binary-Search-Tree │ │ │ ├── Binary-Search-Inorder.png │ │ │ ├── Binary-Search-Insert.png │ │ │ ├── Binary-Search-Tree.png │ │ │ └── degenerated-tree.png │ │ ├── Graph │ │ │ ├── adjecentlist.png │ │ │ ├── adjecentmatrix.png │ │ │ ├── complete.png │ │ │ ├── connected.png │ │ │ ├── cycle.png │ │ │ ├── dag.png │ │ │ ├── direct.png │ │ │ ├── disconnected.png │ │ │ ├── graph1.png │ │ │ ├── mst.png │ │ │ ├── spanningtree.png │ │ │ ├── treegraph.png │ │ │ ├── undirect.png │ │ │ └── weighted.png │ │ ├── HashTable │ │ │ ├── hashtable1.png │ │ │ ├── hashtable2.jpeg │ │ │ ├── hashtable3.png │ │ │ └── hashtable4.png │ │ ├── Heap │ │ │ ├── deletion.png │ │ │ ├── insertion.png │ │ │ └── max_heap_and_min_heap.png │ │ ├── Red-black-tree │ │ │ ├── 01.png │ │ │ ├── 02.PNG │ │ │ ├── 03.PNG │ │ │ ├── 04.PNG │ │ │ ├── 05.PNG │ │ │ ├── 06.PNG │ │ │ └── 07.PNG │ │ ├── Stack_and_Queue │ │ │ ├── queue_image.png │ │ │ ├── stack_image.png │ │ │ └── stack_image2.png │ │ ├── Tree │ │ │ ├── graph-vs-tree.png │ │ │ ├── mst_graph.png │ │ │ ├── tree.png │ │ │ ├── tree_example.jpg │ │ │ └── tree_table.png │ │ ├── TreeMap │ │ │ ├── Map_Hierarchy.png │ │ │ └── TreeMap_Node_Structure.png │ │ └── Trie │ │ │ └── trie.png │ ├── algorithms │ │ ├── LCA │ │ │ ├── lca01.png │ │ │ ├── lca02.png │ │ │ ├── lca03.png │ │ │ ├── lca04.png │ │ │ └── lca05.png │ │ ├── bubble_sort │ │ │ ├── ex_0.JPG │ │ │ ├── ex_1.JPG │ │ │ ├── ex_2.JPG │ │ │ ├── ex_3.JPG │ │ │ └── ex_4.JPG │ │ ├── counting_sort │ │ │ └── counting_sort_1.png │ │ ├── dfs&bfs │ │ │ ├── bfs_animation.gif │ │ │ └── dfs_animation.gif │ │ ├── dijkstra │ │ │ └── 00.gif │ │ ├── dp │ │ │ ├── dp.png │ │ │ ├── memo1.png │ │ │ └── memo2.png │ │ ├── heap_sort │ │ │ ├── heap_sort_animation.gif │ │ │ └── heap_sort_animation2.gif │ │ ├── insertion_sort │ │ │ ├── insertion_sort.gif │ │ │ └── insertion_sort_process.png │ │ ├── kruskal │ │ │ ├── kruskal.gif │ │ │ └── process.png │ │ ├── merge_sort │ │ │ ├── merge_sort.png │ │ │ └── sort_time.png │ │ ├── quick_sort │ │ │ ├── Sorting_quicksort_anim.gif │ │ │ ├── quicksort_1.png │ │ │ └── quicksort_2.png │ │ ├── radix_sort │ │ │ ├── LSD_step1.png │ │ │ ├── LSD_step2.jpg │ │ │ ├── LSD_step3.jpg │ │ │ ├── MSD_step1.jpg │ │ │ ├── MSD_step2.jpg │ │ │ ├── MSD_step3.jpg │ │ │ └── radix_sort.gif │ │ ├── selection_sort │ │ │ ├── selection_sort1.png │ │ │ ├── selection_sort2.png │ │ │ └── selection_sort3.png │ │ ├── two_pointer │ │ │ ├── twopointer1.png │ │ │ └── twopointer2.png │ │ └── union_find │ │ │ ├── uf_1.png │ │ │ └── uf_2.png │ ├── computer_architecture_and_OS │ │ ├── address_binding │ │ │ ├── address_binding.png │ │ │ ├── compile_binding.png │ │ │ ├── loadtime_binding.png │ │ │ └── mmu_binding.png │ │ ├── cache │ │ │ └── cache.png │ │ ├── cisc_risc │ │ │ └── 01.PNG │ │ ├── computer_components │ │ │ ├── 01.png │ │ │ └── 02.png │ │ ├── context_switching │ │ │ ├── context_switching.png │ │ │ ├── context_switching_order.png │ │ │ └── pcb.png │ │ ├── cpu │ │ │ ├── cpu_process.png │ │ │ ├── cpu_structure.png │ │ │ ├── execute_cycle.jpg │ │ │ └── fetch_cycle.jpg │ │ ├── cpu_scheduling │ │ │ ├── cpu_scheduling2.png │ │ │ └── scheduling_steps.png │ │ ├── deadlock │ │ │ ├── deadlock1.jpg │ │ │ └── deadlock2.png │ │ ├── file_system │ │ │ ├── 00.png │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ └── 07.PNG │ │ ├── fixedPoint_floatingPoint │ │ │ ├── binary_integer.png │ │ │ ├── fixed_point.png │ │ │ ├── floating_point.png │ │ │ └── floating_point2.png │ │ ├── fragmentation │ │ │ ├── inner_fragment.jpeg │ │ │ ├── outer_fragment.jpeg │ │ │ └── piece.gif │ │ ├── interrupt │ │ │ ├── 00.png │ │ │ └── 01.jpg │ │ ├── ipc │ │ │ ├── message_queue.webp │ │ │ ├── named_pipe.webp │ │ │ ├── pipe.webp │ │ │ ├── process_structure.png │ │ │ ├── shared_memory.webp │ │ │ └── socket.webp │ │ ├── non_preemptive │ │ │ ├── FCFS.png │ │ │ ├── SJF.png │ │ │ ├── non_preemptive.png │ │ │ └── priority.png │ │ ├── page_replacement_algorithm │ │ │ ├── FIFO.png │ │ │ ├── FIFO2.png │ │ │ ├── LRU.png │ │ │ └── OPT.png │ │ ├── paging_segmentation │ │ │ ├── 00.jpeg │ │ │ └── 01.png │ │ ├── parity_vs_hamming │ │ │ ├── parity.png │ │ │ ├── process1.png │ │ │ ├── process2.png │ │ │ ├── process3.png │ │ │ ├── process4.png │ │ │ ├── process5.png │ │ │ ├── process6.png │ │ │ └── process7.png │ │ ├── pipelining │ │ │ ├── controlHazard.png │ │ │ ├── cycle.jpeg │ │ │ ├── dataHazard.png │ │ │ ├── pipeline.jpeg │ │ │ └── structureHazard.png │ │ ├── preemptive │ │ │ ├── 00.jpg │ │ │ ├── 01.JPG │ │ │ ├── 02.png │ │ │ └── 03.png │ │ ├── process_and_thread │ │ │ ├── process.png │ │ │ ├── programtoprocess.png │ │ │ └── thread.png │ │ ├── synchronization │ │ │ └── producer_consumer.png │ │ ├── synchronous_vs_asynchronous │ │ │ ├── asynchronous1.png │ │ │ ├── asynchronous2.png │ │ │ ├── synchronous.jpg │ │ │ └── synchronous1.jpg │ │ ├── systemcall │ │ │ ├── fork.jpg │ │ │ ├── syscall1.png │ │ │ ├── syscall2.png │ │ │ └── syscall_memory.png │ │ └── virtual_memory │ │ │ ├── thrashing.png │ │ │ └── virtual_memory.png │ ├── database │ │ ├── chattingDB │ │ │ ├── kakao.jpeg │ │ │ └── userProfile.jpg │ │ ├── db_basic │ │ │ ├── 00.png │ │ │ ├── 01.png │ │ │ └── 02.png │ │ ├── db_modeling_board │ │ │ ├── board.png │ │ │ └── board_db.png │ │ ├── index │ │ │ └── index.png │ │ ├── join │ │ │ ├── fullouter.png │ │ │ ├── innerjoin.png │ │ │ ├── join.png │ │ │ ├── leftjoin1.png │ │ │ ├── leftjoin2.png │ │ │ └── rightjoin.png │ │ ├── key │ │ │ └── example.png │ │ ├── normalization │ │ │ ├── 00.png │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ └── 04.png │ │ ├── relational_algebra │ │ │ ├── relational_algebra1.png │ │ │ ├── relational_algebra2.png │ │ │ ├── relational_algebra3.png │ │ │ ├── relational_algebra4.png │ │ │ ├── relational_algebra5.png │ │ │ ├── relational_algebra6.png │ │ │ ├── relational_algebra7.png │ │ │ └── relational_algebra8.png │ │ ├── sql_nosql │ │ │ ├── nosql_1.jfif │ │ │ ├── nosql_2.jfif │ │ │ ├── scaling.jfif │ │ │ ├── sql_nosql_1.jfif │ │ │ └── sql_nosql_2.jfif │ │ └── transaction │ │ │ └── 00.png │ ├── design-pattern │ │ ├── Factory_Method_Pattern │ │ │ └── structure.png │ │ ├── Template_Method_Pattern │ │ │ ├── CoffeeDiagram.png │ │ │ ├── CoffeeDiagram2.png │ │ │ ├── CoffeeDiagram3.png │ │ │ └── Template_Method_Pattern.png │ │ ├── adaptor_pattern │ │ │ ├── adaptor.jpg │ │ │ ├── class-adapter.png │ │ │ └── object-adapter.png │ │ ├── observer_table.png │ │ ├── singleton_pattern │ │ │ ├── singleton1.png │ │ │ └── singleton_define.jpg │ │ └── strategy_pattern │ │ │ └── strategy_pattern_uml_diagram.jpg │ ├── dev_knowledge │ │ ├── 3rd_party │ │ │ ├── kakao_login.JPG │ │ │ └── naver_map.png │ │ ├── Agile │ │ │ ├── agile.jpg │ │ │ ├── scrum.jpg │ │ │ ├── waterfall_agile.png │ │ │ ├── waterfall_method.png │ │ │ └── waterfall_vs_agile.png │ │ ├── MVC │ │ │ ├── MVC.png │ │ │ ├── MVCwork.png │ │ │ └── MassiveMVC.png │ │ ├── OOP │ │ │ ├── Encapsulation.png │ │ │ ├── What-is-OOP.png │ │ │ ├── abstraction.png │ │ │ ├── assembled-lego.jpg │ │ │ └── lego.jpg │ │ ├── devops │ │ │ └── 00.png │ │ └── tdd │ │ │ └── tdd_process.png │ ├── docusaurus.png │ ├── favicon.ico │ ├── free-icon-open-book-401579.svg │ ├── job-interview.svg │ ├── logo.svg │ ├── network │ │ ├── 3-way-handshake&4-way-handshake │ │ │ ├── 3-way-handshaking.png │ │ │ └── 4-way-handshaking.png │ │ ├── block_vs_none_block │ │ │ ├── blocking.png │ │ │ └── non-blocking.png │ │ ├── cookie_session │ │ │ ├── cookie.png │ │ │ └── session.png │ │ ├── http_vs_https │ │ │ ├── http_request.png │ │ │ ├── http_response.png │ │ │ └── https_process.png │ │ ├── load_balancing │ │ │ └── 00.png │ │ ├── osi │ │ │ ├── 00.png │ │ │ └── 01.png │ │ ├── public-key_private-key │ │ │ ├── public_private-key_1.png │ │ │ ├── public_private-key_2.png │ │ │ └── public_private-key_3.png │ │ └── tcp_vs_udp │ │ │ ├── osi7.png │ │ │ ├── tcp.png │ │ │ ├── tcpconn.png │ │ │ └── udp.png │ ├── rating.svg │ └── tutorial │ │ ├── docsVersionDropdown.png │ │ └── localeDropdown.png └── robots.txt └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/.github/ISSUE_TEMPLATE/Comments.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/.github/ISSUE_TEMPLATE/Enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/New_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/.github/ISSUE_TEMPLATE/New_resources.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/.github/ISSUE_TEMPLATE/Questions.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Suggestions.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 📝 제안 3 | about: 해당 저장소에 건의하고 싶은 사항 👍 4 | --- 5 | 6 | ## 내용 7 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 🐛 버그 신고 3 | about: 오타 또는 잘못된 링크를 수정 🛠️ 4 | --- 5 | 6 | ## 내용 7 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/CA_and_OS/01_컴퓨터의 구성.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/01_컴퓨터의 구성.md -------------------------------------------------------------------------------- /docs/CA_and_OS/02_CPU의 구조와 원리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/02_CPU의 구조와 원리.md -------------------------------------------------------------------------------- /docs/CA_and_OS/03_고정 소수점 & 부동 소수점.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/03_고정 소수점 & 부동 소수점.md -------------------------------------------------------------------------------- /docs/CA_and_OS/04_패리티비트와 해밍코드.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/04_패리티비트와 해밍코드.md -------------------------------------------------------------------------------- /docs/CA_and_OS/05_프로세스와 스레드.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/05_프로세스와 스레드.md -------------------------------------------------------------------------------- /docs/CA_and_OS/06_동기화 문제.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/06_동기화 문제.md -------------------------------------------------------------------------------- /docs/CA_and_OS/07_컨텍스트 스위칭.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/07_컨텍스트 스위칭.md -------------------------------------------------------------------------------- /docs/CA_and_OS/08_인터럽트.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/08_인터럽트.md -------------------------------------------------------------------------------- /docs/CA_and_OS/09_시스템 콜.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/09_시스템 콜.md -------------------------------------------------------------------------------- /docs/CA_and_OS/10_교착 상태.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/10_교착 상태.md -------------------------------------------------------------------------------- /docs/CA_and_OS/11_CPU 스케줄링.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/11_CPU 스케줄링.md -------------------------------------------------------------------------------- /docs/CA_and_OS/12_비선점 스케줄링.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/12_비선점 스케줄링.md -------------------------------------------------------------------------------- /docs/CA_and_OS/13_선점 스케줄링.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/13_선점 스케줄링.md -------------------------------------------------------------------------------- /docs/CA_and_OS/14_동기 vs 비동기.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/14_동기 vs 비동기.md -------------------------------------------------------------------------------- /docs/CA_and_OS/15_페이징 & 세그멘테이션.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/15_페이징 & 세그멘테이션.md -------------------------------------------------------------------------------- /docs/CA_and_OS/16_페이지 교체 알고리즘.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/16_페이지 교체 알고리즘.md -------------------------------------------------------------------------------- /docs/CA_and_OS/17_단편화.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/17_단편화.md -------------------------------------------------------------------------------- /docs/CA_and_OS/18_IPC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/18_IPC.md -------------------------------------------------------------------------------- /docs/CA_and_OS/19_가상 메모리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/19_가상 메모리.md -------------------------------------------------------------------------------- /docs/CA_and_OS/20_캐시.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/20_캐시.md -------------------------------------------------------------------------------- /docs/CA_and_OS/21_파일 시스템.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/21_파일 시스템.md -------------------------------------------------------------------------------- /docs/CA_and_OS/22_주소 바인딩.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/22_주소 바인딩.md -------------------------------------------------------------------------------- /docs/CA_and_OS/23_CISC vs RISC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/23_CISC vs RISC.md -------------------------------------------------------------------------------- /docs/CA_and_OS/24_파이프라이닝.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/CA_and_OS/24_파이프라이닝.md -------------------------------------------------------------------------------- /docs/CA_and_OS/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "컴퓨터 구조 및 운영체제", 3 | "position": 7 4 | } -------------------------------------------------------------------------------- /docs/algorithms/01_선택 정렬.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/01_선택 정렬.md -------------------------------------------------------------------------------- /docs/algorithms/02_거품 정렬.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/02_거품 정렬.md -------------------------------------------------------------------------------- /docs/algorithms/02_병합 정렬.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/02_병합 정렬.md -------------------------------------------------------------------------------- /docs/algorithms/04_삽입 정렬.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/04_삽입 정렬.md -------------------------------------------------------------------------------- /docs/algorithms/05_퀵 정렬.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/05_퀵 정렬.md -------------------------------------------------------------------------------- /docs/algorithms/06_힙 정렬.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/06_힙 정렬.md -------------------------------------------------------------------------------- /docs/algorithms/07_기수 정렬.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/07_기수 정렬.md -------------------------------------------------------------------------------- /docs/algorithms/08_계수 정렬.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/08_계수 정렬.md -------------------------------------------------------------------------------- /docs/algorithms/09_투포인터.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/09_투포인터.md -------------------------------------------------------------------------------- /docs/algorithms/10_순열과 조합.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/10_순열과 조합.md -------------------------------------------------------------------------------- /docs/algorithms/11.DFS와BFS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/11.DFS와BFS.md -------------------------------------------------------------------------------- /docs/algorithms/12_최장 증가 수열.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/12_최장 증가 수열.md -------------------------------------------------------------------------------- /docs/algorithms/13_최소 공통 조상.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/13_최소 공통 조상.md -------------------------------------------------------------------------------- /docs/algorithms/14_동적 계획법.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/14_동적 계획법.md -------------------------------------------------------------------------------- /docs/algorithms/15_비트마스크.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/15_비트마스크.md -------------------------------------------------------------------------------- /docs/algorithms/16_이분 탐색.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/16_이분 탐색.md -------------------------------------------------------------------------------- /docs/algorithms/17_위상 정렬.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/17_위상 정렬.md -------------------------------------------------------------------------------- /docs/algorithms/18_유니온 파인드.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/18_유니온 파인드.md -------------------------------------------------------------------------------- /docs/algorithms/19_다익스트라.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/19_다익스트라.md -------------------------------------------------------------------------------- /docs/algorithms/20_크루스칼.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/algorithms/20_크루스칼.md -------------------------------------------------------------------------------- /docs/algorithms/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "알고리즘", 3 | "position": 6 4 | } -------------------------------------------------------------------------------- /docs/database/01_데이터베이스 기본 용어.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/01_데이터베이스 기본 용어.md -------------------------------------------------------------------------------- /docs/database/02_Key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/02_Key.md -------------------------------------------------------------------------------- /docs/database/03_관계대수.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/03_관계대수.md -------------------------------------------------------------------------------- /docs/database/04_SQL injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/04_SQL injection.md -------------------------------------------------------------------------------- /docs/database/05_JOIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/05_JOIN.md -------------------------------------------------------------------------------- /docs/database/06_SQL vs NOSQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/06_SQL vs NOSQL.md -------------------------------------------------------------------------------- /docs/database/07_SQL문.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/07_SQL문.md -------------------------------------------------------------------------------- /docs/database/08_이상현상과 함수종속성.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/08_이상현상과 함수종속성.md -------------------------------------------------------------------------------- /docs/database/09_정규화.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/09_정규화.md -------------------------------------------------------------------------------- /docs/database/10_인덱스.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/10_인덱스.md -------------------------------------------------------------------------------- /docs/database/11_트랜잭션.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/11_트랜잭션.md -------------------------------------------------------------------------------- /docs/database/12_트랜잭션 격리 수준.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/12_트랜잭션 격리 수준.md -------------------------------------------------------------------------------- /docs/database/13_데이터베이스 보안.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/13_데이터베이스 보안.md -------------------------------------------------------------------------------- /docs/database/14_데이터베이스 모델링 설계_게시판 설계.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/14_데이터베이스 모델링 설계_게시판 설계.md -------------------------------------------------------------------------------- /docs/database/15_DB 모델링 설계_카카오톡 채팅방.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/15_DB 모델링 설계_카카오톡 채팅방.mdx -------------------------------------------------------------------------------- /docs/database/16_데이터베이스 회복.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/16_데이터베이스 회복.md -------------------------------------------------------------------------------- /docs/database/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/database/_category_.json -------------------------------------------------------------------------------- /docs/design-pattern/01_디자인 패턴개요.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/design-pattern/01_디자인 패턴개요.md -------------------------------------------------------------------------------- /docs/design-pattern/02_어댑터 패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/design-pattern/02_어댑터 패턴.md -------------------------------------------------------------------------------- /docs/design-pattern/03_싱글톤 패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/design-pattern/03_싱글톤 패턴.md -------------------------------------------------------------------------------- /docs/design-pattern/04_템플릿 메소드 패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/design-pattern/04_템플릿 메소드 패턴.md -------------------------------------------------------------------------------- /docs/design-pattern/05_팩토리 메소드 패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/design-pattern/05_팩토리 메소드 패턴.md -------------------------------------------------------------------------------- /docs/design-pattern/06_옵저버 패턴이란.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/design-pattern/06_옵저버 패턴이란.md -------------------------------------------------------------------------------- /docs/design-pattern/07_스트레티지 패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/design-pattern/07_스트레티지 패턴.md -------------------------------------------------------------------------------- /docs/design-pattern/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "디자인 패턴", 3 | "position": 5 4 | } 5 | -------------------------------------------------------------------------------- /docs/dev_knowledge/02_객체 지향 프로그래밍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/dev_knowledge/02_객체 지향 프로그래밍.md -------------------------------------------------------------------------------- /docs/dev_knowledge/03_RESTful API란.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/dev_knowledge/03_RESTful API란.md -------------------------------------------------------------------------------- /docs/dev_knowledge/04_TDD란.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/dev_knowledge/04_TDD란.md -------------------------------------------------------------------------------- /docs/dev_knowledge/05_애자일은 무엇인가.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/dev_knowledge/05_애자일은 무엇인가.md -------------------------------------------------------------------------------- /docs/dev_knowledge/06_데브옵스란.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/dev_knowledge/06_데브옵스란.md -------------------------------------------------------------------------------- /docs/dev_knowledge/07_서드 파티란.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/dev_knowledge/07_서드 파티란.md -------------------------------------------------------------------------------- /docs/dev_knowledge/08_함수형 프로그래밍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/dev_knowledge/08_함수형 프로그래밍.md -------------------------------------------------------------------------------- /docs/dev_knowledge/09_Git과Github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/dev_knowledge/09_Git과Github.md -------------------------------------------------------------------------------- /docs/dev_knowledge/10_MVC패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/dev_knowledge/10_MVC패턴.md -------------------------------------------------------------------------------- /docs/dev_knowledge/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "개발 상식", 3 | "position": 4 4 | } 5 | -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/network/01_OSI 7계층.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/network/01_OSI 7계층.md -------------------------------------------------------------------------------- /docs/network/02_TCP&UDP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/network/02_TCP&UDP.md -------------------------------------------------------------------------------- /docs/network/03_TCP Handshake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/network/03_TCP Handshake.md -------------------------------------------------------------------------------- /docs/network/04_HTTP와 HTTPS차이.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/network/04_HTTP와 HTTPS차이.md -------------------------------------------------------------------------------- /docs/network/05_공개키 암호, 대칭키 암호.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/network/05_공개키 암호, 대칭키 암호.md -------------------------------------------------------------------------------- /docs/network/06_쿠키와 세션.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/network/06_쿠키와 세션.md -------------------------------------------------------------------------------- /docs/network/08_로드 밸런싱.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/network/08_로드 밸런싱.md -------------------------------------------------------------------------------- /docs/network/09_Blocking vs Non-Blocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/network/09_Blocking vs Non-Blocking.md -------------------------------------------------------------------------------- /docs/network/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "네트워크", 3 | "position": 8 4 | } 5 | -------------------------------------------------------------------------------- /docs/tutorial-basics/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "개발 가이드", 3 | "position": 2 4 | } 5 | -------------------------------------------------------------------------------- /docs/tutorial-basics/markdown-features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/tutorial-basics/markdown-features.mdx -------------------------------------------------------------------------------- /docs/자료구조/01_배열 vs 연결리스트.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/01_배열 vs 연결리스트.md -------------------------------------------------------------------------------- /docs/자료구조/02_트리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/02_트리.md -------------------------------------------------------------------------------- /docs/자료구조/03_Stack vs Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/03_Stack vs Queue.md -------------------------------------------------------------------------------- /docs/자료구조/04_힙.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/04_힙.md -------------------------------------------------------------------------------- /docs/자료구조/05_이진탐색트리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/05_이진탐색트리.md -------------------------------------------------------------------------------- /docs/자료구조/06_B-Tree & B+Tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/06_B-Tree & B+Tree.md -------------------------------------------------------------------------------- /docs/자료구조/07_레드 블랙 트리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/07_레드 블랙 트리.md -------------------------------------------------------------------------------- /docs/자료구조/08_해시 테이블.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/08_해시 테이블.md -------------------------------------------------------------------------------- /docs/자료구조/09_트라이.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/09_트라이.md -------------------------------------------------------------------------------- /docs/자료구조/10_트리맵.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/10_트리맵.md -------------------------------------------------------------------------------- /docs/자료구조/11_그래프.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docs/자료구조/11_그래프.md -------------------------------------------------------------------------------- /docs/자료구조/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "자료구조", 3 | "position": 3 4 | } 5 | -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /interview/android/N사.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/interview/android/N사.md -------------------------------------------------------------------------------- /interview/android/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "안드로이드", 3 | "position": 1 4 | } 5 | -------------------------------------------------------------------------------- /interview/back-end/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "백엔드", 3 | "position": 2 4 | } 5 | -------------------------------------------------------------------------------- /interview/culture-fit/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "인성면접", 3 | "position": 4 4 | } 5 | -------------------------------------------------------------------------------- /interview/front-end/D사.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/interview/front-end/D사.md -------------------------------------------------------------------------------- /interview/front-end/N사 인턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/interview/front-end/N사 인턴.md -------------------------------------------------------------------------------- /interview/front-end/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "프론트엔드", 3 | "position": 3 4 | } 5 | -------------------------------------------------------------------------------- /interview/front-end/스타트업 C사.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/interview/front-end/스타트업 C사.md -------------------------------------------------------------------------------- /interview/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/interview/intro.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/package.json -------------------------------------------------------------------------------- /sidebarInterview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/sidebarInterview.js -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/src/components/HomepageFeatures.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/src/pages/markdown-page.md -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/array.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/array.PNG -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/doubly_circular_linked_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/doubly_circular_linked_list.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/doubly_linked_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/doubly_linked_list.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/doubly_linked_list_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/doubly_linked_list_2.JPG -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/linked_list.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/linked_list.PNG -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/linked_list_deletion_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/linked_list_deletion_0.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/linked_list_deletion_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/linked_list_deletion_1.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/linked_list_deletion_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/linked_list_deletion_2.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/linked_list_deletion_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/linked_list_deletion_3.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/linked_list_insertion_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/linked_list_insertion_0.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/linked_list_insertion_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/linked_list_insertion_1.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/linked_list_insertion_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/linked_list_insertion_2.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/Array_and_LinkedList/singly_circular_linked_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Array_and_LinkedList/singly_circular_linked_list.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/B-Tree/B+TreeStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/B-Tree/B+TreeStructure.png -------------------------------------------------------------------------------- /static/img/Data-Structure/B-Tree/B-TreeDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/B-Tree/B-TreeDelete.png -------------------------------------------------------------------------------- /static/img/Data-Structure/B-Tree/B-TreeDelete2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/B-Tree/B-TreeDelete2.png -------------------------------------------------------------------------------- /static/img/Data-Structure/B-Tree/B-TreeInsertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/B-Tree/B-TreeInsertion.png -------------------------------------------------------------------------------- /static/img/Data-Structure/B-Tree/B-TreeStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/B-Tree/B-TreeStructure.png -------------------------------------------------------------------------------- /static/img/Data-Structure/B-Tree/B-TreeofOrder4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/B-Tree/B-TreeofOrder4.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/B-Tree/TreeStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/B-Tree/TreeStructure.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Binary-Search-Tree/Binary-Search-Inorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Binary-Search-Tree/Binary-Search-Inorder.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Binary-Search-Tree/Binary-Search-Insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Binary-Search-Tree/Binary-Search-Insert.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Binary-Search-Tree/Binary-Search-Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Binary-Search-Tree/Binary-Search-Tree.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Binary-Search-Tree/degenerated-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Binary-Search-Tree/degenerated-tree.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/adjecentlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/adjecentlist.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/adjecentmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/adjecentmatrix.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/complete.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/connected.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/cycle.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/dag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/dag.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/direct.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/disconnected.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/graph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/graph1.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/mst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/mst.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/spanningtree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/spanningtree.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/treegraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/treegraph.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/undirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/undirect.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Graph/weighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Graph/weighted.png -------------------------------------------------------------------------------- /static/img/Data-Structure/HashTable/hashtable1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/HashTable/hashtable1.png -------------------------------------------------------------------------------- /static/img/Data-Structure/HashTable/hashtable2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/HashTable/hashtable2.jpeg -------------------------------------------------------------------------------- /static/img/Data-Structure/HashTable/hashtable3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/HashTable/hashtable3.png -------------------------------------------------------------------------------- /static/img/Data-Structure/HashTable/hashtable4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/HashTable/hashtable4.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Heap/deletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Heap/deletion.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Heap/insertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Heap/insertion.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Heap/max_heap_and_min_heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Heap/max_heap_and_min_heap.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Red-black-tree/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Red-black-tree/01.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Red-black-tree/02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Red-black-tree/02.PNG -------------------------------------------------------------------------------- /static/img/Data-Structure/Red-black-tree/03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Red-black-tree/03.PNG -------------------------------------------------------------------------------- /static/img/Data-Structure/Red-black-tree/04.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Red-black-tree/04.PNG -------------------------------------------------------------------------------- /static/img/Data-Structure/Red-black-tree/05.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Red-black-tree/05.PNG -------------------------------------------------------------------------------- /static/img/Data-Structure/Red-black-tree/06.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Red-black-tree/06.PNG -------------------------------------------------------------------------------- /static/img/Data-Structure/Red-black-tree/07.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Red-black-tree/07.PNG -------------------------------------------------------------------------------- /static/img/Data-Structure/Stack_and_Queue/queue_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Stack_and_Queue/queue_image.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Stack_and_Queue/stack_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Stack_and_Queue/stack_image.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Stack_and_Queue/stack_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Stack_and_Queue/stack_image2.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Tree/graph-vs-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Tree/graph-vs-tree.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Tree/mst_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Tree/mst_graph.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Tree/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Tree/tree.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Tree/tree_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Tree/tree_example.jpg -------------------------------------------------------------------------------- /static/img/Data-Structure/Tree/tree_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Tree/tree_table.png -------------------------------------------------------------------------------- /static/img/Data-Structure/TreeMap/Map_Hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/TreeMap/Map_Hierarchy.png -------------------------------------------------------------------------------- /static/img/Data-Structure/TreeMap/TreeMap_Node_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/TreeMap/TreeMap_Node_Structure.png -------------------------------------------------------------------------------- /static/img/Data-Structure/Trie/trie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/Data-Structure/Trie/trie.png -------------------------------------------------------------------------------- /static/img/algorithms/LCA/lca01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/LCA/lca01.png -------------------------------------------------------------------------------- /static/img/algorithms/LCA/lca02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/LCA/lca02.png -------------------------------------------------------------------------------- /static/img/algorithms/LCA/lca03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/LCA/lca03.png -------------------------------------------------------------------------------- /static/img/algorithms/LCA/lca04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/LCA/lca04.png -------------------------------------------------------------------------------- /static/img/algorithms/LCA/lca05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/LCA/lca05.png -------------------------------------------------------------------------------- /static/img/algorithms/bubble_sort/ex_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/bubble_sort/ex_0.JPG -------------------------------------------------------------------------------- /static/img/algorithms/bubble_sort/ex_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/bubble_sort/ex_1.JPG -------------------------------------------------------------------------------- /static/img/algorithms/bubble_sort/ex_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/bubble_sort/ex_2.JPG -------------------------------------------------------------------------------- /static/img/algorithms/bubble_sort/ex_3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/bubble_sort/ex_3.JPG -------------------------------------------------------------------------------- /static/img/algorithms/bubble_sort/ex_4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/bubble_sort/ex_4.JPG -------------------------------------------------------------------------------- /static/img/algorithms/counting_sort/counting_sort_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/counting_sort/counting_sort_1.png -------------------------------------------------------------------------------- /static/img/algorithms/dfs&bfs/bfs_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/dfs&bfs/bfs_animation.gif -------------------------------------------------------------------------------- /static/img/algorithms/dfs&bfs/dfs_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/dfs&bfs/dfs_animation.gif -------------------------------------------------------------------------------- /static/img/algorithms/dijkstra/00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/dijkstra/00.gif -------------------------------------------------------------------------------- /static/img/algorithms/dp/dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/dp/dp.png -------------------------------------------------------------------------------- /static/img/algorithms/dp/memo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/dp/memo1.png -------------------------------------------------------------------------------- /static/img/algorithms/dp/memo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/dp/memo2.png -------------------------------------------------------------------------------- /static/img/algorithms/heap_sort/heap_sort_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/heap_sort/heap_sort_animation.gif -------------------------------------------------------------------------------- /static/img/algorithms/heap_sort/heap_sort_animation2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/heap_sort/heap_sort_animation2.gif -------------------------------------------------------------------------------- /static/img/algorithms/insertion_sort/insertion_sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/insertion_sort/insertion_sort.gif -------------------------------------------------------------------------------- /static/img/algorithms/insertion_sort/insertion_sort_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/insertion_sort/insertion_sort_process.png -------------------------------------------------------------------------------- /static/img/algorithms/kruskal/kruskal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/kruskal/kruskal.gif -------------------------------------------------------------------------------- /static/img/algorithms/kruskal/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/kruskal/process.png -------------------------------------------------------------------------------- /static/img/algorithms/merge_sort/merge_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/merge_sort/merge_sort.png -------------------------------------------------------------------------------- /static/img/algorithms/merge_sort/sort_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/merge_sort/sort_time.png -------------------------------------------------------------------------------- /static/img/algorithms/quick_sort/Sorting_quicksort_anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/quick_sort/Sorting_quicksort_anim.gif -------------------------------------------------------------------------------- /static/img/algorithms/quick_sort/quicksort_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/quick_sort/quicksort_1.png -------------------------------------------------------------------------------- /static/img/algorithms/quick_sort/quicksort_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/quick_sort/quicksort_2.png -------------------------------------------------------------------------------- /static/img/algorithms/radix_sort/LSD_step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/radix_sort/LSD_step1.png -------------------------------------------------------------------------------- /static/img/algorithms/radix_sort/LSD_step2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/radix_sort/LSD_step2.jpg -------------------------------------------------------------------------------- /static/img/algorithms/radix_sort/LSD_step3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/radix_sort/LSD_step3.jpg -------------------------------------------------------------------------------- /static/img/algorithms/radix_sort/MSD_step1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/radix_sort/MSD_step1.jpg -------------------------------------------------------------------------------- /static/img/algorithms/radix_sort/MSD_step2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/radix_sort/MSD_step2.jpg -------------------------------------------------------------------------------- /static/img/algorithms/radix_sort/MSD_step3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/radix_sort/MSD_step3.jpg -------------------------------------------------------------------------------- /static/img/algorithms/radix_sort/radix_sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/radix_sort/radix_sort.gif -------------------------------------------------------------------------------- /static/img/algorithms/selection_sort/selection_sort1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/selection_sort/selection_sort1.png -------------------------------------------------------------------------------- /static/img/algorithms/selection_sort/selection_sort2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/selection_sort/selection_sort2.png -------------------------------------------------------------------------------- /static/img/algorithms/selection_sort/selection_sort3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/selection_sort/selection_sort3.png -------------------------------------------------------------------------------- /static/img/algorithms/two_pointer/twopointer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/two_pointer/twopointer1.png -------------------------------------------------------------------------------- /static/img/algorithms/two_pointer/twopointer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/two_pointer/twopointer2.png -------------------------------------------------------------------------------- /static/img/algorithms/union_find/uf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/union_find/uf_1.png -------------------------------------------------------------------------------- /static/img/algorithms/union_find/uf_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/algorithms/union_find/uf_2.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/address_binding/address_binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/address_binding/address_binding.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/address_binding/compile_binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/address_binding/compile_binding.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/address_binding/loadtime_binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/address_binding/loadtime_binding.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/address_binding/mmu_binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/address_binding/mmu_binding.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/cache/cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/cache/cache.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/cisc_risc/01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/cisc_risc/01.PNG -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/computer_components/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/computer_components/01.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/computer_components/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/computer_components/02.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/context_switching/context_switching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/context_switching/context_switching.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/context_switching/context_switching_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/context_switching/context_switching_order.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/context_switching/pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/context_switching/pcb.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/cpu/cpu_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/cpu/cpu_process.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/cpu/cpu_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/cpu/cpu_structure.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/cpu/execute_cycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/cpu/execute_cycle.jpg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/cpu/fetch_cycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/cpu/fetch_cycle.jpg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/cpu_scheduling/cpu_scheduling2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/cpu_scheduling/cpu_scheduling2.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/cpu_scheduling/scheduling_steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/cpu_scheduling/scheduling_steps.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/deadlock/deadlock1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/deadlock/deadlock1.jpg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/deadlock/deadlock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/deadlock/deadlock2.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/file_system/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/file_system/00.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/file_system/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/file_system/01.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/file_system/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/file_system/02.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/file_system/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/file_system/03.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/file_system/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/file_system/04.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/file_system/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/file_system/05.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/file_system/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/file_system/06.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/file_system/07.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/file_system/07.PNG -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/fixedPoint_floatingPoint/binary_integer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/fixedPoint_floatingPoint/binary_integer.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/fixedPoint_floatingPoint/fixed_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/fixedPoint_floatingPoint/fixed_point.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/fixedPoint_floatingPoint/floating_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/fixedPoint_floatingPoint/floating_point.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/fixedPoint_floatingPoint/floating_point2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/fixedPoint_floatingPoint/floating_point2.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/fragmentation/inner_fragment.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/fragmentation/inner_fragment.jpeg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/fragmentation/outer_fragment.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/fragmentation/outer_fragment.jpeg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/fragmentation/piece.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/fragmentation/piece.gif -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/interrupt/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/interrupt/00.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/interrupt/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/interrupt/01.jpg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/ipc/message_queue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/ipc/message_queue.webp -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/ipc/named_pipe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/ipc/named_pipe.webp -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/ipc/pipe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/ipc/pipe.webp -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/ipc/process_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/ipc/process_structure.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/ipc/shared_memory.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/ipc/shared_memory.webp -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/ipc/socket.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/ipc/socket.webp -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/non_preemptive/FCFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/non_preemptive/FCFS.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/non_preemptive/SJF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/non_preemptive/SJF.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/non_preemptive/non_preemptive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/non_preemptive/non_preemptive.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/non_preemptive/priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/non_preemptive/priority.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/page_replacement_algorithm/FIFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/page_replacement_algorithm/FIFO.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/page_replacement_algorithm/FIFO2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/page_replacement_algorithm/FIFO2.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/page_replacement_algorithm/LRU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/page_replacement_algorithm/LRU.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/page_replacement_algorithm/OPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/page_replacement_algorithm/OPT.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/paging_segmentation/00.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/paging_segmentation/00.jpeg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/paging_segmentation/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/paging_segmentation/01.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/parity_vs_hamming/parity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/parity_vs_hamming/parity.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/parity_vs_hamming/process1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/parity_vs_hamming/process1.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/parity_vs_hamming/process2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/parity_vs_hamming/process2.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/parity_vs_hamming/process3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/parity_vs_hamming/process3.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/parity_vs_hamming/process4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/parity_vs_hamming/process4.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/parity_vs_hamming/process5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/parity_vs_hamming/process5.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/parity_vs_hamming/process6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/parity_vs_hamming/process6.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/parity_vs_hamming/process7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/parity_vs_hamming/process7.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/pipelining/controlHazard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/pipelining/controlHazard.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/pipelining/cycle.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/pipelining/cycle.jpeg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/pipelining/dataHazard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/pipelining/dataHazard.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/pipelining/pipeline.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/pipelining/pipeline.jpeg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/pipelining/structureHazard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/pipelining/structureHazard.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/preemptive/00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/preemptive/00.jpg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/preemptive/01.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/preemptive/01.JPG -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/preemptive/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/preemptive/02.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/preemptive/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/preemptive/03.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/process_and_thread/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/process_and_thread/process.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/process_and_thread/programtoprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/process_and_thread/programtoprocess.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/process_and_thread/thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/process_and_thread/thread.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/synchronization/producer_consumer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/synchronization/producer_consumer.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/synchronous_vs_asynchronous/asynchronous1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/synchronous_vs_asynchronous/asynchronous1.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/synchronous_vs_asynchronous/asynchronous2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/synchronous_vs_asynchronous/asynchronous2.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/synchronous_vs_asynchronous/synchronous.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/synchronous_vs_asynchronous/synchronous.jpg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/synchronous_vs_asynchronous/synchronous1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/synchronous_vs_asynchronous/synchronous1.jpg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/systemcall/fork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/systemcall/fork.jpg -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/systemcall/syscall1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/systemcall/syscall1.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/systemcall/syscall2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/systemcall/syscall2.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/systemcall/syscall_memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/systemcall/syscall_memory.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/virtual_memory/thrashing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/virtual_memory/thrashing.png -------------------------------------------------------------------------------- /static/img/computer_architecture_and_OS/virtual_memory/virtual_memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/computer_architecture_and_OS/virtual_memory/virtual_memory.png -------------------------------------------------------------------------------- /static/img/database/chattingDB/kakao.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/chattingDB/kakao.jpeg -------------------------------------------------------------------------------- /static/img/database/chattingDB/userProfile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/chattingDB/userProfile.jpg -------------------------------------------------------------------------------- /static/img/database/db_basic/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/db_basic/00.png -------------------------------------------------------------------------------- /static/img/database/db_basic/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/db_basic/01.png -------------------------------------------------------------------------------- /static/img/database/db_basic/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/db_basic/02.png -------------------------------------------------------------------------------- /static/img/database/db_modeling_board/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/db_modeling_board/board.png -------------------------------------------------------------------------------- /static/img/database/db_modeling_board/board_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/db_modeling_board/board_db.png -------------------------------------------------------------------------------- /static/img/database/index/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/index/index.png -------------------------------------------------------------------------------- /static/img/database/join/fullouter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/join/fullouter.png -------------------------------------------------------------------------------- /static/img/database/join/innerjoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/join/innerjoin.png -------------------------------------------------------------------------------- /static/img/database/join/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/join/join.png -------------------------------------------------------------------------------- /static/img/database/join/leftjoin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/join/leftjoin1.png -------------------------------------------------------------------------------- /static/img/database/join/leftjoin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/join/leftjoin2.png -------------------------------------------------------------------------------- /static/img/database/join/rightjoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/join/rightjoin.png -------------------------------------------------------------------------------- /static/img/database/key/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/key/example.png -------------------------------------------------------------------------------- /static/img/database/normalization/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/normalization/00.png -------------------------------------------------------------------------------- /static/img/database/normalization/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/normalization/01.png -------------------------------------------------------------------------------- /static/img/database/normalization/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/normalization/02.png -------------------------------------------------------------------------------- /static/img/database/normalization/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/normalization/03.png -------------------------------------------------------------------------------- /static/img/database/normalization/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/normalization/04.png -------------------------------------------------------------------------------- /static/img/database/relational_algebra/relational_algebra1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/relational_algebra/relational_algebra1.png -------------------------------------------------------------------------------- /static/img/database/relational_algebra/relational_algebra2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/relational_algebra/relational_algebra2.png -------------------------------------------------------------------------------- /static/img/database/relational_algebra/relational_algebra3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/relational_algebra/relational_algebra3.png -------------------------------------------------------------------------------- /static/img/database/relational_algebra/relational_algebra4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/relational_algebra/relational_algebra4.png -------------------------------------------------------------------------------- /static/img/database/relational_algebra/relational_algebra5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/relational_algebra/relational_algebra5.png -------------------------------------------------------------------------------- /static/img/database/relational_algebra/relational_algebra6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/relational_algebra/relational_algebra6.png -------------------------------------------------------------------------------- /static/img/database/relational_algebra/relational_algebra7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/relational_algebra/relational_algebra7.png -------------------------------------------------------------------------------- /static/img/database/relational_algebra/relational_algebra8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/relational_algebra/relational_algebra8.png -------------------------------------------------------------------------------- /static/img/database/sql_nosql/nosql_1.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/sql_nosql/nosql_1.jfif -------------------------------------------------------------------------------- /static/img/database/sql_nosql/nosql_2.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/sql_nosql/nosql_2.jfif -------------------------------------------------------------------------------- /static/img/database/sql_nosql/scaling.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/sql_nosql/scaling.jfif -------------------------------------------------------------------------------- /static/img/database/sql_nosql/sql_nosql_1.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/sql_nosql/sql_nosql_1.jfif -------------------------------------------------------------------------------- /static/img/database/sql_nosql/sql_nosql_2.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/sql_nosql/sql_nosql_2.jfif -------------------------------------------------------------------------------- /static/img/database/transaction/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/database/transaction/00.png -------------------------------------------------------------------------------- /static/img/design-pattern/Factory_Method_Pattern/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/Factory_Method_Pattern/structure.png -------------------------------------------------------------------------------- /static/img/design-pattern/Template_Method_Pattern/CoffeeDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/Template_Method_Pattern/CoffeeDiagram.png -------------------------------------------------------------------------------- /static/img/design-pattern/Template_Method_Pattern/CoffeeDiagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/Template_Method_Pattern/CoffeeDiagram2.png -------------------------------------------------------------------------------- /static/img/design-pattern/Template_Method_Pattern/CoffeeDiagram3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/Template_Method_Pattern/CoffeeDiagram3.png -------------------------------------------------------------------------------- /static/img/design-pattern/Template_Method_Pattern/Template_Method_Pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/Template_Method_Pattern/Template_Method_Pattern.png -------------------------------------------------------------------------------- /static/img/design-pattern/adaptor_pattern/adaptor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/adaptor_pattern/adaptor.jpg -------------------------------------------------------------------------------- /static/img/design-pattern/adaptor_pattern/class-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/adaptor_pattern/class-adapter.png -------------------------------------------------------------------------------- /static/img/design-pattern/adaptor_pattern/object-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/adaptor_pattern/object-adapter.png -------------------------------------------------------------------------------- /static/img/design-pattern/observer_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/observer_table.png -------------------------------------------------------------------------------- /static/img/design-pattern/singleton_pattern/singleton1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/singleton_pattern/singleton1.png -------------------------------------------------------------------------------- /static/img/design-pattern/singleton_pattern/singleton_define.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/singleton_pattern/singleton_define.jpg -------------------------------------------------------------------------------- /static/img/design-pattern/strategy_pattern/strategy_pattern_uml_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/design-pattern/strategy_pattern/strategy_pattern_uml_diagram.jpg -------------------------------------------------------------------------------- /static/img/dev_knowledge/3rd_party/kakao_login.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/3rd_party/kakao_login.JPG -------------------------------------------------------------------------------- /static/img/dev_knowledge/3rd_party/naver_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/3rd_party/naver_map.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/Agile/agile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/Agile/agile.jpg -------------------------------------------------------------------------------- /static/img/dev_knowledge/Agile/scrum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/Agile/scrum.jpg -------------------------------------------------------------------------------- /static/img/dev_knowledge/Agile/waterfall_agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/Agile/waterfall_agile.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/Agile/waterfall_method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/Agile/waterfall_method.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/Agile/waterfall_vs_agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/Agile/waterfall_vs_agile.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/MVC/MVC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/MVC/MVC.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/MVC/MVCwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/MVC/MVCwork.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/MVC/MassiveMVC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/MVC/MassiveMVC.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/OOP/Encapsulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/OOP/Encapsulation.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/OOP/What-is-OOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/OOP/What-is-OOP.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/OOP/abstraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/OOP/abstraction.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/OOP/assembled-lego.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/OOP/assembled-lego.jpg -------------------------------------------------------------------------------- /static/img/dev_knowledge/OOP/lego.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/OOP/lego.jpg -------------------------------------------------------------------------------- /static/img/dev_knowledge/devops/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/devops/00.png -------------------------------------------------------------------------------- /static/img/dev_knowledge/tdd/tdd_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/dev_knowledge/tdd/tdd_process.png -------------------------------------------------------------------------------- /static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/docusaurus.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/free-icon-open-book-401579.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/free-icon-open-book-401579.svg -------------------------------------------------------------------------------- /static/img/job-interview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/job-interview.svg -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/network/3-way-handshake&4-way-handshake/3-way-handshaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/3-way-handshake&4-way-handshake/3-way-handshaking.png -------------------------------------------------------------------------------- /static/img/network/3-way-handshake&4-way-handshake/4-way-handshaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/3-way-handshake&4-way-handshake/4-way-handshaking.png -------------------------------------------------------------------------------- /static/img/network/block_vs_none_block/blocking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/block_vs_none_block/blocking.png -------------------------------------------------------------------------------- /static/img/network/block_vs_none_block/non-blocking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/block_vs_none_block/non-blocking.png -------------------------------------------------------------------------------- /static/img/network/cookie_session/cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/cookie_session/cookie.png -------------------------------------------------------------------------------- /static/img/network/cookie_session/session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/cookie_session/session.png -------------------------------------------------------------------------------- /static/img/network/http_vs_https/http_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/http_vs_https/http_request.png -------------------------------------------------------------------------------- /static/img/network/http_vs_https/http_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/http_vs_https/http_response.png -------------------------------------------------------------------------------- /static/img/network/http_vs_https/https_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/http_vs_https/https_process.png -------------------------------------------------------------------------------- /static/img/network/load_balancing/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/load_balancing/00.png -------------------------------------------------------------------------------- /static/img/network/osi/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/osi/00.png -------------------------------------------------------------------------------- /static/img/network/osi/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/osi/01.png -------------------------------------------------------------------------------- /static/img/network/public-key_private-key/public_private-key_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/public-key_private-key/public_private-key_1.png -------------------------------------------------------------------------------- /static/img/network/public-key_private-key/public_private-key_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/public-key_private-key/public_private-key_2.png -------------------------------------------------------------------------------- /static/img/network/public-key_private-key/public_private-key_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/public-key_private-key/public_private-key_3.png -------------------------------------------------------------------------------- /static/img/network/tcp_vs_udp/osi7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/tcp_vs_udp/osi7.png -------------------------------------------------------------------------------- /static/img/network/tcp_vs_udp/tcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/tcp_vs_udp/tcp.png -------------------------------------------------------------------------------- /static/img/network/tcp_vs_udp/tcpconn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/tcp_vs_udp/tcpconn.png -------------------------------------------------------------------------------- /static/img/network/tcp_vs_udp/udp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/network/tcp_vs_udp/udp.png -------------------------------------------------------------------------------- /static/img/rating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/rating.svg -------------------------------------------------------------------------------- /static/img/tutorial/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/tutorial/docsVersionDropdown.png -------------------------------------------------------------------------------- /static/img/tutorial/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/img/tutorial/localeDropdown.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/static/robots.txt -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLifeFam/cs_interview/HEAD/yarn.lock --------------------------------------------------------------------------------