본문 바로가기

전체 글

(143)
[Spring]스프링 3.1 라이브러리 다운로드 [Maven을 사용하지 않고!] 스프링다운로드일단 스프링 홈페이지에서 Maven이나 프로젝트 관리도구로 받으라고 "강요"하며 따로 다운로드 링크를 주지 않기에 보안이 강력한 업무사이트에서는 Maven에서 자동적으로 받아오는 스프링 파일조차도 막아 놓기떄문에 아래 해당 링크를 통해 받아 학습해야한다. 다운로드 링크
[Data Base] Oracle 11g Express HR 계정 잠금 해제방법 System 계정으로 콘솔 접속하여 아래 쿼리를 실행시켜주면 된다. ---------------------------------------------------------------------------------------------------------alter user hr account unlock;alter user hr identified by hr;---------------------------------------------------------------------------------------------------------끝
[acmicpc/1004] 어린왕자 문제 12345678910111213141516171819202122232425262728293031323334public class Main { static class StarNode { public StarNode(int x, int y, int r) { this.x = x; this.y = y; this.r = r; } int value = 0, x = 0, y = 0, r = 0; } static Scanner sc = new Scanner(System.in); static StarNode s = null; static StarNode e = null; static StarNode[] stArr = null; static int count = 0, stNum = 0; public static void ..
[Javascript] 3D Clock 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 var i = 3; $(document).ready(function () { setInterval(function () { var date = new Date(); i++; $(".cube").eq(i-1).html(date.getHours() + " : " + date.getMinutes() + " : " + date.getSeconds()); if(i == 4) i = 0; }, ..
[BFS] 2261 : 경로찾기 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677import java.util.LinkedList;import java.util.Scanner; public class Main { class Node { public Node (int numNode, Node node ){ this.numNode = numNode; this.before = node; } int numNode; Node before; } public static void main(String[] args) { Main n = new..
ㅇㅇ 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 import java.util.LinkedList;import java.util.Scanner; public class Main { class Node { public Node (int numNode, Node node ){ this.numNode = numNode; this.before = node; } int numNode; Node before; } public static void main(String[] args) { Main n = new ..
[DFS] 1027 : 좋은수열 12345678910111213141516171819202122232425262728293031323334353637383940414243 import java.util.Scanner;public class GoodSequence { public static void main(String[] args) { GoodSequence n = new GoodSequence(); n.goodSequence(0); n.display(); } Scanner sc = new Scanner(System.in); int deepMax = sc.nextInt(); StringBuffer sequence = new StringBuffer(); boolean isFind = false; public void goodSequen..
[DFS] Nqueen Algorithm 12345678910111213141516171819202122232425262728293031323334353637383940import java.util.Scanner; // N Queen// http://jungol.co.kr/problem.php?id=1889public class NQueen { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] check = new int[n]; int count = 0; public void queenCount(int deep){ if(deep == n){ count++; return; } for(int i = 0; i