Recent posts

이진탐색, 백준 1654번

3 minute read

이진탐색 알고리즘 ``` def binary_search(array, target, start, end): while start <= end: mid = (start + end) // 2

calendar insert, 다른 데이터 select

1 minute read

form으로 당일 날짜에 대한 todolist insert calendar.html에서 버튼 input-data가 클릭되면 readForm 함수 실행 $("#input-data").click(function(){ readForm("toDoList", "/to...

Buffer

1 minute read

layout: post title: “자바와 Buffer” —-

플로이드 와샬 알고리즘 (백준 11403)

5 minute read

Floyd Warshall Algorithm 모든 정점 –> 모든 정점으로 가는 모든 경우의 수를 2차원 배열에 저장 기존의 경로 값 vs 특정 노드를 거치는 경우 경로 값 비교 뒤 더 작은거 저장