일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자료구조
- 액티비티 ANR
- 알고리즘
- 자바 컬렉션
- 안드로이드 AdapterView
- oracle
- support 라이브러리
- DFS
- android adapterview
- 너비우선탐색
- java
- SQLite와 Realm 차이점
- android fragment
- 안드로이드
- support fragment
- 백준 알고리즘
- 안드로이드 파일
- 소수
- BFS
- android support
- 깊이우선탐색
- 백준
- 컬렉션
- db
- application not responding
- 안드로이드 DBMS
- 안드로이드 ANR
- Github
- 소수 알고리즘
- anr
Archives
- Today
- Total
목록이진패턴 (1)
밍의 기록들😉
문제 소스코드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..
자료구조, 알고리즘/문제풀이
2018. 9. 4. 00:53