일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- support 라이브러리
- java
- 자바 컬렉션
- 안드로이드 ANR
- 깊이우선탐색
- DFS
- 안드로이드 파일
- 안드로이드
- android adapterview
- oracle
- 너비우선탐색
- BFS
- 자료구조
- 백준 알고리즘
- Github
- 소수
- android support
- 액티비티 ANR
- support fragment
- application not responding
- 안드로이드 AdapterView
- 백준
- anr
- 안드로이드 DBMS
- db
- 알고리즘
- android fragment
- SQLite와 Realm 차이점
- 소수 알고리즘
- 컬렉션
- Today
- Total
밍의 기록들😉
문제 소스코드import java.util.Scanner; public class Tobin { private static int N; private static int K; public static int[] ans = new int[30]; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); K = sc.nextInt(); tobin(N, K, 0); } // n자릿수 1이 k개인 경우의 수 private static void tobin(int n, int k, int index) { if(N == index){ // 인덱스가 자릿수만큼 채워질 경우 출력 for(int i=0; i0..
문제 소스코드 import java.util.Scanner; public class Division2 { private static int N; private static int cnt = 0; static int[] array = new int[20]; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); division(N, 0, 0); System.out.println(cnt); } private static void division(int n, int sum, int index) { for(int x=n; x>0; x--){ if(index==0){ // 처음 시작 숫자 array..
스택(Stack)의 개념 한쪽 끝으로만 자료의 삽입, 삭제 작업이 이루어지는 자료 구조 (선형 자료 구조) 가장 나중에 삽입된 자료가 가장 먼저 삭제되는 후입선출(LIFO; Last In First Out) 방식으로 자료를 처리 스택(Stack)의 에러스택 오버플로우 : 스택의 모든 기억장소가 꽉 채워져 있는 상태이므로 더 이상 자료를 삽입할 수 없을 때 발생스택 언더플로우 : 스택에 제거할 자료가 없을 때 발생 스택(Stack)의 연산create(size) : 스택의 크기를 지정하고 생성한다.push(item) : item을 스택에 삽입한다.pop() : 스택에 가장 위에 있는 항목을 제거한다.top() : 스택의 가장 위에 있는 항목을 반환한다.size() : 스택에 있는 item의 개수를 반환한다...