Câu hỏi của thinh hung

Code binary search tree của mình bị lỗi, mọi ng chạy thử coi lỗi gì giúp mình với

#include <iostream> #include <deque> #include <climits> #include <vector> using namespace std; struct Tree { char data; Tree *left; Tree *right; Tree *parent; }; Tree* lookUp(struct Tree *node, char key) { if(node == NULL) return node; if(node->data == key) ...

thinh hung viết 00:52 ngày 01/10/2018 chỉnh sửa
1