-
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월 29일 #5
base: main
Are you sure you want to change the base?
The head ref may contain hidden characters: "\uBC31\uD2B8\uB798\uD0B9"
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.
15663 코드리뷰 완료
너무 완벽해서 .. 정말 더 드릴 커멘트가 없었네요...!
이번 백트래킹 과제도 정말 고생 많으셨습니다 🤗❤✨
+흠.. 정확한 답변은 작성하신 코드를 직접 봐야 알 것 같은데 혹시 벡터 배열을 0으로 제대로 초기화 해주신 상태였나요?
C++ 에서 전역배열은 초기화값을 지정하지 않으면 자동으로 0으로 초기화되지만 벡터배열엔 쓰레기값이 들어가거든요..! 😃
int value=0; // value: 이전 선택값. | ||
|
||
for (int i = 0; i < n; i++) { //i: 고르려는 수 | ||
if (!check[i] && arr[i]!=value){ | ||
num[cnt] = arr[i]; | ||
value = num[cnt]; //이전 선택 값을 저장! | ||
check[i] = true; | ||
backtracking(cnt + 1); //다음 인덱스 수 호출 | ||
check[i] = false; | ||
} | ||
} |
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.
맞아요! 이전 수열의 마지막 항과 새로 추가할 값이 같으면 중복된 수열이 된다는 점을 활용하면 되는 문제였어요.
기본 재귀 순열에서 이전에 선택된 값을 저장하는 value 변수를 사용하여
cnt 번째 같은 숫자가 중복되서 사용되지 않도록 구현해주셨네요!🥰
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.
15663 코드리뷰 완료
너무 완벽해서 .. 정말 더 드릴 커멘트가 없었네요...! 이번 백트래킹 과제도 정말 고생 많으셨습니다 🤗❤✨
+흠.. 정확한 답변은 작성하신 코드를 직접 봐야 알 것 같은데 혹시 벡터 배열을 0으로 제대로 초기화 해주신 상태였나요?
C++ 에서 전역배열은 초기화값을 지정하지 않으면 자동으로 0으로 초기화되지만 벡터배열엔 쓰레기값이 들어가거든요..! 😃
헉 제가 선언만 하고 초기화를 안 했네요ㅠㅠ 말씀해주신대로 초기화 문제였던 것 같습니다!! 답변 정말 감사합니다! 많은 도움이 되었어요!!
[추가제출 확인 완료] |
내용 & 질문
<기존 제출>
<추가 제출>