Skip to content

Instantly share code, notes, and snippets.

@dlgusdn616
Created November 16, 2018 14:17
Show Gist options
  • Save dlgusdn616/1c45eb2d577ffd0cf15d5de4aa043019 to your computer and use it in GitHub Desktop.
Save dlgusdn616/1c45eb2d577ffd0cf15d5de4aa043019 to your computer and use it in GitHub Desktop.
/**
* if (root->left == NULL && root->right == NULL) // 왼쪽 서브트리와 오른쪽 서브트리가 없을 때
* if (root == NULL) or if (!root) // 방문을 했는데 존재하지 않는 노드였을 경우
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment