일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 빅오표기법
- java
- DEFAULT
- mvc디자인패턴
- java접근제어자
- JavaSwing
- DTO
- DB
- oracle developer
- 자바
- DAO
- DB 제약조건
- DATABASE
- 데이터베이스
- 오라클
- break
- C#접근제한자
- C언어 표준 라이브러리
- O(n)
- 접근제한자
- sql
- 메이븐업데이트
- oracle db
- C#접근제어자
- o(log n)
- Oracle
- Vo
- JSP
- Oracle SQL Developer
- 자바연산자
목록빅오표기법 (2)
성장일기 : 문과생의 개발 여정 (งᐖ)ว ( ᐛ )و
// 1. 주어진 연도가 윤년인지 아닌지를 확인// 함수에 전달된 년도를 N, 년도가 몇이든 알고리즘에 걸리는 단계수는 일정함으로 O(1)const isLeapYear = (year) => { return (year % 100 === 0) ? (year % 400 === 0) : (year % 4 === 0);}// 2. 배열의 합을 계산하는 함수// 배열에 원소가 N개일 때 루프는 N번 실행됨으로 O(N)const arraySum = (array) => { let sum = 0; for (let i = 0; i { let chessboardSpaces = 1; let placedGrains = 1; while (placedGrains { let newArray ..
1> 선형검색 알고리즘 O(n) : 알고리즘에 n단계가 필요하다 import java.util.Arrays; public class Main { public static void main(String[] args) { String[] things = {"apples", "baboons", "cribs", "culcimers"}; for (String thing : things) { System.out.printf("Here's a thing: %s\n", thing); } } } 자바코드 using System; class Program { static void Main(string[] args) { string[] things = { "apples", "baboons", "cribs", "culcime..