일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- cors
- #spring boot
- mariadb 다국어
- message protocol
- emqx
- mqtt
- 원격
- mosquitto
- com.netflix.zuul.exception.ZuulException
- db utf8
- mariadb 한국어
- xrdp
- mysql 다국어
- Set
- #actuator
- HashMap
- CORS policy: No 'Access-Control-Allow-Origin'
- #spring boot admin
- 크로스도메인
- #MSA
- Hystrix Read time out
- Access-Control-Allow-Origin
- mysql 한국어
- IOT
- java collection
- TreeMap
- mstsc
- com.netflix.zuul.exception.ZuulException: Hystrix Readed time out
- backtracking
- ArrayList
- Today
- Total
목록IT_Algorithm (4)
miin29na
bcp0109.tistory.com/124 3Sum (Java) Problem 문제 링크 Medium 난이도의 문제입니다. nums 배열에서 합이 0이 되는 세개의 원소 리스트들을 return 하면 됩니다. Solution 백준에 있는 세 용액과 비슷한 문제이지만 해당되는 리스트를 전부 r bcp0109.tistory.com
스택 사용 idea-sketch.tistory.com/29?category=547419 [알고리즘] 되추적(Backtracking)을 알아보자. 오늘의 주제는 되추적(Backtracking) 이다. 저번 포스팅인 깊이우선탐색(Depth-First Search)과 넓이우선탐색(Breath-First Search)의 몸풀기를 거치고 최단경로(Shortest Path) 알고리즘에 들어가는 첫 걸음이라.. idea-sketch.tistory.com
- Java Collection List 순서 존재 / 데이터 중복 허용 Index 사용 ArrayList LinkedList Stack 성능 정렬 선언 초기화 new ArrayList(Arrays.asList(1,2,3)); codevang.tistory.com/129?category=827592 Map Key,Value / 순서X / Key중복 X HashMap TreeMap HashTable 성능 hashMap > treeMap 트리구조 만들어 저장 범위검색, 정렬 시에는 HashMap 보다 좋음 HashMap 구버전 정렬 가장 처음 넣은 데이터가 index=0 key 값 자동 정렬 선언 HashMap map = new HashMap() Map tm = new TreeMap(map); 초기화 // ..
Tree https://gmlwjd9405.github.io/2018/08/12/data-structure-tree.html [자료구조] 트리(Tree)란 - Heee's Development Blog Step by step goes a long way. gmlwjd9405.github.io DFS(Depth-First Search) : 깊이 우선 탐색 - 스택 사용. - 참고 https://gmlwjd9405.github.io/2018/08/14/algorithm-dfs.html [알고리즘] 깊이 우선 탐색(DFS)이란 - Heee's Development Blog Step by step goes a long way. gmlwjd9405.github.io idea-sketch.tistory.com/27..