작성한 질문수
정혜경 판타스틱 자료구조 in C
28강. BST 구현 (개념과 초기화, add)
작성
·
148
0
if (data < parent->data) parent->left = node
else parent->right = node;
여기서 값을 대소비교할 때 node->data 말고 그냥 함수로 받은 data로 사용해도 되나요?
답변