-
Notifications
You must be signed in to change notification settings - Fork 11
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
[과제/05] 01/lmhyuck #42
base: main
Are you sure you want to change the base?
Conversation
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.
과제제출/lmhyuck/05/05.cpp
Outdated
} | ||
} | ||
delete cmd; | ||
delete curr; |
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.
main이나 main밖에서도 curr
이 없는 것 같아요
front = (front + num) % maxSize; | ||
} | ||
else { | ||
for (int i = front + 1; i <= rear; i++) { |
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.
for (int i = front + 1; i <= rear; i++)
front가 4고 rear가 0인 경우엔 어떻게 하는게 좋을까요?
진행 주차
5주차입니다.
진행 중 구현을 못한 사항
Error 200을 구현하는 게 어려웠고 그와 관련해 새로 알게 된 함수를
적용시키는 과정이 어려웠습니다.