-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[스택, 큐, 덱] 9월 9일 #3
base: main
Are you sure you want to change the base?
The head ref may contain hidden characters: "\uC2A4\uD0DD-\uD050-\uB371"
Conversation
#11866, #18115 제출합니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p2. 18115 코드리뷰 완료
승연님 안녕하세요 😊 코드가 깔끔해서 너무 잘 읽혔습니다! 다음엔 주석도 있으면 더 좋을 것 같아요 🥰 함수화 관련 코멘트 남겼는데 확인해주시면 좋을 것 같아요. 수고하셨습니다 🔥❤
for (int i = 1; i <= n; i++) { | ||
int store; | ||
switch (input[n - i]) { | ||
case 1: | ||
arr.push_back(i); | ||
break; | ||
case 2: | ||
store = arr.back(); | ||
arr.pop_back(); | ||
arr.push_back(i); | ||
arr.push_back(store); | ||
break; | ||
case 3: | ||
arr.push_front(i); | ||
break; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p2. 해당 부분은 문제의 핵심 연산이니 함수화를 하면 가독성을 더 높일 수 있을 것 같습니다! 특히, 코딩테스트에선 solution 타입이 대부분으로, main함수가 제공되지 않고 solution함수만 제공되어 정답을 리턴하는 형태이니 지금부터 함수화에 익숙해지시면 좋을 것 같아요! 🔥
for (int i = 0; i < n; i++) { | ||
cout << arr[n - i - 1] << ' '; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p3. deque의 back()연산을 활용하면 더욱 간편하게 출력을 할 수 있을 것 같아요~! 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2. 11866 코드리뷰 완료
승연님 안녕하세요!
코드 정말 깔끔하게 잘 짜주셨어요! 로직도 정말 정말 좋습니다!! 코멘트 드린 것처럼 함수화랑 출력만 조금 더 신경 써주시면 좋을 것 같아요! 수고하셨습니다! 궁금한 점 있으시면 리뷰어를 호출해주세요!!😎😎
|
||
cout << '<'; | ||
|
||
while (n--) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
연산을 하는 부분은 함수화해도 좋을 것 같아요. 그리고 출력 하는 부분이 좀 흩어져 있네요..! vector에 저장한 후에 출력하면 좀 더 코드가 깔끔해질 것 같아요!! 함수에서 vector에 원소를 순서대로 저장하고
vector를 main으로 리턴해서 한 번에 출력하면 어떨까요?
내용&질문
제출합니다!
<기존 제출>
11866, 18115