유튜브의 MIT OpenCourseWare 채널에는 MIT의 다양한 학과 강의가 있다. 여기에 정리할 요약 노트의 원 강의는 MIT 6.006 Introduction to Algorithms, Spring 2020로, 교수님들이 알고리즘/데이터 구조를 자세히 설명해주시
Interface, or API, is the specification of what you want to do, or in other words, what data you can store and data structure is the representation of
여기에 정리할 요약 노트의 원 강의는 MIT 6.006 Introduction to Algorithms, Spring 2020로, 영어 강의인만큼 요약도 영어로 작성하고자 한다A set interface is a container that stores a sequenc
여기에 정리할 요약 노트의 원 강의는 MIT 6.006 Introduction to Algorithms, Spring 2020로, 영어 강의인만큼 요약도 영어로 작성하고자 한다A comparison model or comparison tree consists of in
여기에 정리할 요약 노트의 원 강의는 MIT 6.006 Introduction to Algorithms, Spring 2020로, 영어 강의인만큼 요약도 영어로 작성하고자 한다Suppose u is small and all the keys are unique. Make
A node in a binary tree typically has an item and three pointers: parent pointer, left pointer(child) and right pointer(child). A root is a node that
Finding a certain item can be done with binary search if the nodes are ordered so that the keys the nodes represent are in an increasing ordersubtree_