JavaScript 데이터 구조 및 알고리즘(트리, 섹션 1)

1416 단어 datastructures
안녕하세요!JavaScript 데이터 구조와 알고리즘에 관한 다섯 번째 글에서 나는 트리와 삽입, 추가, 전치, 반복과 삭제 작업을 어떻게 실행하는지 토론할 것이다.
트리는 부모 노드와 왼쪽 및 오른쪽 서브노드로 구성된 두 개의 데이터 구조입니다.

class Node {
  constructor(value){
    this.left = null;
    this.right = null;
    this.value = value;
  }
}

class BinarySearchTree {
  constructor(){
    this.root = null;
  }
    ...
}

}
}
}


좋은 웹페이지 즐겨찾기