본문 바로가기

분류 전체보기278

주요 CSS 프레임워크 - 예쁜 웹디자인, 프론트엔드 템플릿 찾기 CSS 프레임워크를 사용하면 예쁘고 멋진 웹 디자인 템플릿을 쉽게 사용할 수 있다. 아래는 주요 프레임워크들이며, 세부적인 디자인들을 찾아서 자신의 웹사이트에 사용하면 좋을 것이다. 대부분의 프레임워크 웹사이트에 Documentation(또는 Docs. :설명서)에 프레임워크의 요소들(Components)에 대한 설명이 나와있다. 요소들의 디자인을 보면서 자신이 필요한 프레임워크를 고를 수 있다. 또는 프레임워크를 사용한 웹사이트 예제가 있다면 한 번 들어가 보는 것도 좋다. 부트스트랩: https://getbootstrap.com/ Bootstrap The most popular HTML, CSS, and JS library in the world. getbootstrap.com 파운데이션: https.. 2021. 12. 4.
RDBMS별 DataSource driverClass, url 정리 RDBMS Driver URL Oracle oracle.jdbc.driver.OracleDriver oracle.jdbc.OracleDriver jdbc:oracle:thin:@localhost jdbc:oracle:oci:@localhost MySQL com.mysql.jdbc.Driver jdbc:mysql://localhost:3306/[스키마명] MariaDB org.mariadb.jdbc.Driver jdbc:mariadb://localhost:3306/[스키마명] PostgreSQL org.postgresql.Driver jdbc:postgresql://localhost:5432/[스키마명] 2021. 11. 12.
버킷 정렬 package Practice; import java.util.Arrays; public class BucketSort{ public static void sort(int[] a, int maxVal) { int [] bucketArr=new int[maxVal+1]; for (int i=0; i 2021. 10. 30.
[20211021] 퀵 정렬 package Day15; import java.util.Scanner; //퀵 정렬 public class QuickSort { // 배열 요소 a[idx1]과 a[idx2]의 값을 바꾼다. static void swap(int a[], int idx1, int idx2) { int t = a[idx1]; a[idx1] = a[idx2]; a[idx2] = t; } // 배열을 나눈다. static void quickSort(int a[], int left, int right) { int pl = left; // 왼쪽 커서 int pr = right; // 오른쪽 커서 int x = a[(pl + pr) / 2]; // 피벗(가운데 위치의 값) System.out.printf("a[%d] ~ a[%d].. 2021. 10. 22.
728x90