전체 글
-
33번 정렬알고리즘인프런 알고리즘테스트 문제 2020. 9. 11. 21:12
#include #include using namespace std; int main() { int N = 0; int mtemp = 0; int max = 0; int temp = 0; int number = 0; cin >> N; vector arr(N); vector grade(N); for (int i = 0; i > arr[i]; } for (int i = 0; i < N; i++) { max = arr[i]; mtemp = i; for (int j = i; j < N; j++) { if (max < arr[j]) { max = arr[j]; mtemp = j; } } temp = arr[i]; arr[i] = arr[mtemp]; arr[mtemp] = temp;..
-
32번 정렬알고리즘인프런 알고리즘테스트 문제 2020. 9. 11. 20:39
#include #include using namespace std; int main() { int N = 0; int mtemp = 0; int min = 0; int temp = 0; cin >> N; vector arr(N); for (int i = 0; i > arr[i]; } for (int i = 0; i arr[j]) { min = arr[j]; mtemp = j; } } temp = arr[i]; arr[i] = arr[mtemp]; arr[mtemp] = temp; } for (int i = 0; i < N; i++) { ..
-
디렉토리와 파일1linux 2020. 9. 10. 22:11
www.codeonweb.com/practice/run/ CodeOnWeb Provides integrated environment with teaching, practicing and sharing. Lecture note with live running codes, communities for classes and study groups, Code sandbox to share your creatures. All on your web browser. Support Python 2/3, C/C++, PHP, Java, R, n www.codeonweb.com 위 사이트에서 실습 수행 1.현재 디렉토리의 파일 목록확인(ls -al) * ls 명령어를 사용하여 디렉토리(directory)에 있는 내용(디렉..
-
tip3오픽 2020. 9. 3. 14:59
1.솔직한 변명은 나중에 하기 ! 처음 부분에서 하지않기 ex)actually... i can't remember very specially... but one thing i just remember very clearly it was so huge house(x) ex)i just remember very clearly it was so huge house but actually... i can't remember very specially...(o) 2.메인포인트 정하기 질문을 받고 어떤 부분에 메인포인트를 정하고 말할 것인지 결정하기 질문:너 옛날집에 대해 말해줘 지금 사는집과는 어떻게 달라? 메인포인트를 화장실로 결정! ex)you know.. i live by myself in an apartm..
-
tip2오픽 2020. 9. 3. 14:32
what is your normal routine at home? -what things do you usually do on weekdays and what kinds of things do you do on weekends? and what kinds of things do you do on weekends? 1.질문 여러개중 한가지를 집중적으로 말하고 나머지는 대충말하기 위 지문에서 주말과 주중에 뭘하는지 물어보았다 이럴 때 주말 주중 둘중 하나를 골라서 집중적으로 말해라 ex) I am student so I don't have much time on weekdays.. so I am barely home 이런식으로 나는 주중에 시간이 없어서 집에 별로없다 라고 말하고 주말에 대해 집중적으로 이야..
-
tip1오픽 2020. 9. 3. 14:31
1강 1. ava한테 질문하지 말기 (질문할때는 대답이 필요없는 질문만 하기) ex)oh, you wanna know about my place? sure thing~ (x) ex)oh..so you wanna know about my place..alright,well...(o) 2.불편하고 어려운 단어 사용하지 않기! 사용하기 편하고 자신감있는 간단한 단어만 사용하기 - 꿀팁 - house(주택) apartment(아파트) 두 개를 구분짖기 위해 사용하는 것이 아니라면 home을쓰자! 3.한 문장에서 같은 단어 반복하지 않기. ex)this place is a very small place.(x) ex)my place is very small(o) 4.직유법 많이 사용하기 (like) ex)Looks..