https://www.acmicpc.net/problem/11722 11053 가장 긴 부분 수열을 조금 수정한 문제입니다. 123456789101112131415161718192021222324252627#include using namespace std; int arr[1001];int dp[1001];int main(){ int n; cin >> n; for (int i = 0; i > arr[i]; } for (int i = 0; i dp[i]) { dp[i] = dp[j] + 1; } } } int result = 0; for (int i = 0; i
https://www.acmicpc.net/problem/11055 arr[0] ~ arr[i] (i=0~n) 에 대하여 값의 합들이 가장 큰 것을 dp 배열에 저장해가며 진행합니다. 12345678910111213141516171819202122232425262728#include using namespace std; int arr[1001];long long dp[1001];int main(){ int n; long long result = 0; cin >> n; for (int i = 0; i > arr[i]; } for (int i = 0; i
http://www.wpf-tutorial.com/common-interface-controls/menu-control/ WPF는 Menu 컨트롤을 생성함으로써 메뉴를 만들 수 있습니다. 또한, MenuItem elemtent를 추가하여 매우 간단하게 Item을 추가할 수 있습니다.1234567891011121314 Colored by Color Scriptercs Header에서 정의할 때 _(언더바)를 사용합니다. "_File"은 F를 단축키와 같이사용할 수 있게 합니다.[ALT]를 누르고 [F] 등을 누르면 해당 메뉴의 항목으로 이동합니다. Icons and checkboxes WPF의 MenuItem은 icon과 특정 기능을 키고 끌 수 있는 menuitem을 지원합니다.12345678910111..
http://www.wpf-tutorial.com/dialogs/the-savefiledialog/ SaveFileDialog Filter 이전의 OpneFileDialog와 유사하게 filter를 적용시킬 수 있습니다.Filter 속성을 사용하여, 저장 확장자명을 한정시킬 수 있습니다.123456 Save file Colored by Color Scriptercs1234567private void btnSaveFile_Click(object sender, RoutedEventArgs e) { SaveFileDialog saveFileDialog = new SaveFileDialog(); saveFileDialog.Filter = "Text file (*.txt)|*.txt|C# file (*.cs)|*..
윈도우 응용프로그램에서 파일 열기 혹은 저장을 할 때마다, 여러분은 거의 같은 dialog가 나타납니다.WPF에서 여러분은 Microsoft.Win32 namepsace에서 표준 DIALOG를 찾을 수 있습니다. Simple OpenFileDialog example 1234567 Open file Colored by Color Scriptercs 1234567891011using System.IO;using Microsoft.Win32; private void btnOpenFile_Click(object sender, RoutedEventArgs e) { OpenFileDialog openFileDialog = new OpenFileDialog(); if(openFileDialog.ShowDialog()..
http://www.wpf-tutorial.com/dialogs/the-messagebox/ MessageBox 12345 public MainWindow() { InitializeComponent(); MessageBox.Show("Hello, world!", "My App",MessageBoxButton.OK); }Colored by Color ScriptercsMessageBox.Show(Content Text, Title, MessageBoxButton); MessageBox with extra buttons 12MessageBox.Show("This MessageBox has extra options.\n\nHello, world?", "My App", MessageBoxButton.YesNoC..
http://www.wpf-tutorial.com/commands/implementing-custom-commands/ 이전에는 WPF에 미리 정의되어진 command들의 사용에 대한 다양한 방법들을 보았습니다.추가적으로 command들을 사용자가 구현할 수 있습니다. 가장 쉬운 방법은 사용자의 command들을 포함하는 static class를 구현하는 것입니다.각각의 command는 static field로 class에 추가되어집니다. 12345678910111213141516171819202122232425262728293031 public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } privat..
1234567 New Colored by Color Scriptercs1234567891011121314 public MainWindow() { InitializeComponent(); } private void CommandBinding_Executed(object sender, ExecutedRoutedEventArgs e) { MessageBox.Show("The New command was invoked"); } private void CommandBinding_CanExecute(object sender, CanExecuteRoutedEventArgs e) { e.CanExecute = true; }Colored by Color Scriptercs CommandBidings collection을..
*헤더 파일(*.h)헤더파일의 중복을 막기 위한 처리123#ifndef ..._H#define#endif ..._Hcs *classclass의 중요 속성 - Data Hiding(접근 제한자)Encapsulation(=>data hiding)inheritancePholymophism(같은 명령어, 다른 방식의 수행) - 오버라이딩 *생성자, 오버로딩, 복사생정사1234567891011121314151617181920212223242526272829303132class Point {public: int x, y; void Print(); Point(); Point(int initialX, int initialY); Point(const Point& pt);};Point::Point(){ x = 0; y =..
- Total
- Today
- Yesterday
- 문자열
- command
- 백준
- dfs
- BFS
- Fakebook
- 객체
- listview
- MVVM
- 생활코딩
- Add TapGesture
- Custom Cell
- CustomCollectionViewCell
- BOJ
- C++
- Cell Animation
- XAML
- FEED
- UIView Animation
- 그래프
- DP
- WPF
- 백준온라인
- 데이터 바인딩
- 코딩야학
- 스택
- 타일링
- CollectionView
- Grid
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |