Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 취업
- 일상
- 엔퀸즈
- 코딩
- JS
- underscores
- react
- underbar
- ftech
- DOM
- 개발
- 초보
- 자바스크립트
- 제일어려워
- Instantiation Patterns
- 연습
- 알고리즘
- JavaScript
- 공부
- grpahQL
- 클라이언트
- vscode
- nqueens
- 리액트
- 코드스테이츠
- 포스기
- this
- method
- array
- 해커톤
Archives
- Today
- Total
목록큐 (1)
analogcoding
5/31 / Data Structures , big O notation , time complexity
체크포인트 big O notation / time complexity O(1) - Constant O(log n) - Logarithmic O(n) - Linear O(n^2) - Quadratic 오답 정리. Array 특정 인덱스 값을 remove 할 때 , 시작 부분에 값을 삽입할 때 O(n) / 특정 인덱스를 알거나 시작 부분처럼 정해진 인덱스의 경우 O(1) 이라고 생각했다. 그렇지만 다른 배열들이 자리를 재배치 받게 되어서 O(n). Linked list 에서 이미 한 번 주소값에 연결된 경우, index + 1 에 새 노드를 삽입할 때 O(1) / linked list 는 주소 값을 알면 한 번에 접근 가능. Array Insert Lookup(position) Assign Remove Fi..
Be well coding/In Immersive
2019. 6. 1. 03:50