일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- D드라이브생성
- 백준15652
- 정올 1620
- 재귀함수
- 백준13458
- 에라토스테네스의채
- BFS
- 23288
- 자바 코테
- 알고리즘개념
- 코테준비
- 백준2251
- 중복조합
- 주사위굴리기2
- 정보처리기사
- 완탐
- 순열
- 볼륨 만들기
- 삼성역테
- N과M
- 백준
- 코테
- 중복순열
- java
- 파티션 크기 조정
- 전화번호속의암호
- 자바
- 알고리즘
- 완전탐색
- Bfs와DFS
- Today
- Total
목록아카이브 (20)
뚱땅뚱땅
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/B68dx/btqC0JHFZtb/eNUIaklT7ra5p0KHkPQtgk/img.png)
# 필기 참고: 시나공 정보처리기사 2. 소프트웨어 개발 >1.데이터 입.출력 구현 1. 자료구조의 정의 - 목적: 저장공간의 효율성과 실행시간의 신속성 - 의미: 자료를 기억장치의 기억공간 내에 저장하는 방법과 저장된 그룹 내에 존재하는 자료의 관계, 처리방법 등 2. 자료구조 분류 - 선형구조: 배열, 선형 리스트(연속 리스트, 연결 리스트), 스택, 큐, 데크 - 비선형 구조: 트리, 그래프 3. 배열 - 동일한 자료형의 데이터들이 같은 크기로 나열. - 정적이다. -> 메모리 추가 어렵고, 삭제시 저장되어있던게 빈공간 되니까 메모리 낭비 - index 이용하여 데이터 접근 - 반복적인 데이터 처리 작업에 적합한 구조 - 데이터마다 동일한 이름의 변수 사용-> 처리 간편 - 4. 선형 리스트(Lin..
알고리즘을 통한 문제 해결전략 6과 - 재귀 함수 이용 - 중복으로 세는 경우, 사전순으로 하여 답 하나만 세도록 한다. #include #include using namespace std; int n; // the number of students bool areFriends[10][10] = { false, }; int countPairings(bool taken[10]); int main() { int testcase; int pair; int f1, f2; vector answer; cin >> testcase; for (int i = 0; i < testcase; i++) { //areFriends false로 다시 초기화 for (int m = 0; m < 10; m++) { for (int ..
알고리즘 문제 해결 전략 - BOGGLE 문제 재귀 함수 이용 #include #include #include using namespace std; const int dx[8] = {-1,-1,-1,0,0,1,1,1}; const int dy[8] = {-1,0,1,-1,1,-1,0,1}; char board[5][5]; bool hasWord(int y, int x, const string& word); bool isRange(int y, int x); int main() { int testcase; //char board[5][5]; string board_sentence; int howmany_word; vector words; string temp; cin>> testcase; for (int i..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/EjOoT/btqBYup8lfp/mjfRnbzI8kB2mLrXk7OLuk/img.png)
During the Android project, I’ve frequently got ‘cannot resolve the symbol’ error. A bunch of variables of the standard library was red and the auto-completion had stopped working. So, I’m going to write about how I solved my problem. Clean project -> rebuild project Try this method first. It is very simple but effective. Click ‘Clean Project’ , and then ‘Rebuild project’. sync project with grad..
1. Flutter ? - 구글에서 만든 프레임워크. 크로스 플랫폼 개발 용이함. - IOS의 스토리보드나 Android의 xml : 다른 데서 UI 만들고, 앱 상에서 UI를 불러오는 방식으로 코딩 했었는데 Flutter는 다름! (EX 01) import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); // 앱 실행 class MyApp extends StatelessWidget{ // 상태 변경 없는 위젯. 한번 UI가 그려지면 그대로 있음. @override Widget build(BuildContext context){ // UI 만드는 부분 return new MaterialApp( // MaterialApp Desig..