본문 바로가기

전체 글109

ZTM Data Structures & Algorithms - Tree udemy 에서 Master the Coding interview: Data Structures & Algorithms 강의를 수강한 내용을 정리하는 포스팅입니다. https://en.wikipedia.org/wiki/Tree_(data_structure) Tree (data structure) - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Not to be confused with trie, a specific type of tree data structure. Abstract data type simulating a hierarchical tree structure and represented as.. 2021. 8. 28.
ZTM Data Structures & Algorithms - Stacks & Queue udemy 에서 Master the Coding interview: Data Structures & Algorithms 강의를 수강한 내용을 정리하는 포스팅입니다. Stack https://en.wikipedia.org/wiki/Stack_(abstract_data_type) Stack (abstract data type) - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Abstract data type Similar to a stack of plates, adding or removing is only possible at the top. Simple representation of a stack ru.. 2021. 8. 22.
ZTM Data Structures & Algorithms - Linked List udemy 에서 Master the Coding interview: Data Structures & Algorithms 강의를 수강한 내용을 정리하는 포스팅입니다. Linked List https://en.wikipedia.org/wiki/Linked_list#:~:text=In%20computer%20science%2C%20a%20linked,which%20together%20represent%20a%20sequence. Linked list - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Data structure which is a linear collection of data elements, c.. 2021. 8. 22.
바닐라코딩 prep 4주차 정리 바닐라코딩의 prep 과정을 수강한 내용을 정리한 포스팅입니다. 강의 이번주의 강의는 자바스크립트의 this에 관하여 공부하는 내용이었습니다. 주요 내용은 아래와 같습니다. -this는 작성된 곳이 아니라 함수 호출 방식에 따라 값이 달라진다. -함수 호출은 크게 4가지 형태로 구분이 가능하며 다음과 같다. 1.일반 함수 실행 => 전역객체가 this에 바인딩 되며 strict 모드에서는 undefined가 바인딩 됩니다. 2.메서드 호출(dot notation, bracket) => 메서드를 호출한 객채가 this 에 바인딩 됩니다. 3.간접 호출 (call, apply, bind) => 간접 호출시 인자로 전달한 객체가this 로 설정됩니다. 4. new 키워드를 통한 생성자 함수로 호출 => 생성자.. 2021. 8. 18.
바닐라코딩 prep 3주차 정리 바닐라코딩의 prep 과정을 수강한 내용을 정리한 포스팅입니다. 강의 이번주 강의는 원시타입과 참조타입에관한여 그리고 es5 이후로 추가된 자바스크립트의 기능에대해 공부했습니다. -Primitive & Reference type 자바스크립트에서 객체(object)를 제외한 모든 자료형은 원시타입입니다. 즉 객체만 참조형입니다. 참조형과 원시타입의 차이는 변수에 저장할때 해당 자료형의 메모리 주소를 저장하는지 아니면 실제 자료를 저장하는지로 구분됩니다.(실제로는 변수가 원시형이든 참조형이든 변수는 메모리주소가 저장됩니다. 다만 설명의 용이를 위해 대부분 위와 같이 구분하는 것 같습니다.) 코어자바스크립트 서적의 챕터 1과 모던 자바스크립트 deep dvie 서적의 원시형과 참조형에 관한 설명파트를 보면 이.. 2021. 8. 10.
바닐라코딩 prep 2주차 정리 바닐라코딩의 prep 과정을 수강한 내용을 정리한 포스팅입니다. 강의 이번주 강의는 DOM과 스코프 호이스팅에 관하여 정리하는 강의였습니다. - DOM Document Object Model을 의미하며 HTML 문서를 구조화 하여 자바스크립트로 제어할 수 있게해주는 API입니다. HTML 문서는 HTML 요소(element)의 집합으로 이루어져있으며 해당 요소들은 객체화되어 트리 자료구조의 노드가됩니다. 이렇게 노드객체로 구성된 트리자료구조를 DOM 이라고 합니다 (따라서 DOM 트리라고도 부릅니다.). DOM 에는 HTML 문서 조작을 가능케 하는 여러 메서드가 있으며 주로 요소선택, 요소조작, 요소생성, 이벤트 와 관련이 있습니다. https://developer.mozilla.org/en-US/do.. 2021. 8. 2.