-
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
[DFS, BFS] 4월 9일 #6
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.
2606(P3), 2644(P3)
안녕하세요 윤선님! 코드 리뷰 완료되었습니다👍
함수 dfs와 bfs 모두 이용한 풀이 너무 좋았습니다!
늘 성실하게 과제 제출해주셔서 감사합니다.
이번주도 고생하셨습니다! 시험 기간 화이팅입니다~!
몇 가지 사소한 코멘트 남겼습니다.
궁금하신 점이 있다면 리뷰어를 호출해주세요!
void bfs(int v, const vector<vector<int>>& arr, vector<bool>& visited) { | ||
queue<int> q; | ||
q.push(v); | ||
visited[v] = true; | ||
|
||
int cnt = 0; | ||
|
||
while (!q.empty()) { | ||
v = q.front(); | ||
q.pop(); | ||
|
||
for (size_t i = 1; i < arr[v].size(); ++i) { | ||
if (arr[v][i] == 1 && !visited[i]) { | ||
q.push(i); | ||
visited[i] = true; | ||
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.
P3: bfs 흐름 너무 좋습니다!
하나만 매개변수에 하나만 const를 붙인 이유가 따로 있나요??
int is_visited[101]; | ||
|
||
// 깊이 우선 탐색 함수 | ||
void depth_first_search(int current, int end, int steps) { |
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: 개인의 선택이지만 변수 : 스네이크 표기법, 함수 : 카멜 표기법 을 권장드리고 있습니다!!
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: 두 문제에서 bfs와 dfs 전부 잘 활용하여 푸셨네요 최곱니다~
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.
[DFS/BFS 구현 코드 리뷰 완료]
2615(P2)
안녕하세요 윤선님!
이번 구현 문제가 살짝 난이도가 있었는데 정말 잘 풀어주신 것 같습니다🥰
코드가 고민해서 작성해주신 것 같아서 너무 좋았고, 주석도 꼼꼼하게 잘 달아주셔서 잘 읽혔습니다 👍
추가적으로 고려해보시면 좋을 것들 몇 가지만 코멘트로 남겼습니다. 한 번 읽어봐주세요!
과제하느라 고생하셨어요!!💚
#include <iostream> | ||
#include <vector> | ||
|
||
#define MAX 19 |
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.
바둑판의 크기를 상수로 미리 정의해두고 사용해주셨네요! 이런 식으로 반복해서 사용하는 숫자는 하드코딩하는 것보다 상수로 선언하는게 숫자를 잘못 적을 가능성도 적어지고, 유지보수할 때도 좋아요 👍👍👍
using namespace std; | ||
|
||
vector<vector<char>> graph(MAX, vector<char>(MAX)); | ||
vector<vector<vector<vector<bool>>>> visited(MAX, vector<vector<vector<bool>>>(MAX, vector<vector<bool>>(4, vector<bool>(2, 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.
P3: 현재 4차원 배열을 생성하신것으로 보이는데 이차원 배월로 수정해주시면 더 가독성이나 효율성 측면에서 좋을 것 같아요!
인적사항
학번 : 2076378
이름 : 정윤선
과제제출
기존 제출 : 2606, 2615, 2644
추가 제출 :