일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 이분 탐색
- 안드로이드
- 한글 깨짐
- 안드로이드 스튜디오
- KMP
- 계산기
- scc
- c언어
- 앱
- 어플
- Kosaraju's algorithm
- BFS
- Parametric Search
- upper_bound
- 앱 이름 변경
- lower_bound
- 알고리즘
- 최단경로
- AlertDialog
- C++
- Today
- Total
소시지
다음 사진과 같이 리스트를 만들어 화면에 띄우는 것을 AlertDialog라고 합니다. XML파일은 버튼만 만들면 되기 때문에 간단합니다. 123456789101112131415161718192021 Colored by Color Scriptercs 이제 Button의 OnClickListemer을 만듭니다.OnClickListener안에는 다음과 같은 내용을 넣습니다.12345678910111213141516171819202122232425262728293031323334353637package com.example.geon6.a170122_alertdialog; import android.content.DialogInterface;import android.support.v7.app.AlertDial..
SCC(Strongly Connected Component)란? 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354#include #include #include #include #include using namespace std;int n, out_len;bool check[10001], check2[10001];vector r[10001], r2[10001];stack S, S2;set out[10001]; void dfs(int x) { check[x] = true; for (auto it = r[x].begin(); it != r[x].end(); it++) if (che..