회원가입 ID/PW 찾기

1) 지식 창고는 본인이 작성한 콘텐츠(팁/노하우/리소스/강좌 등)을 무료 혹은 가상화폐인 납포인트를 통해 공유하는 공간입니다.
2) 본인이 작성한 콘텐츠에 대해서만 지식 창고에 등록할 수 있으며, 저작권에 위배되는 콘텐츠는 사전경고 없이 삭제될 수 있습니다.
3) 콘텐츠 구매 및 첨부파일 다운로드는 회원그룹 '연구원' 이상 가능하오니, 경험치를 쌓아 진급한 후에 이용 부탁드립니다.
4) 무료 콘텐츠의 본문은 구매절차 없이 즉시 이용할 수 있으며, 판매 납포인트가 있는 콘텐츠는 구매 후 이용할 수 있습니다.
5) 콘텐츠 판매에 따른 납포인트 수익은 지정한 비율(50%)에 따라 판매자에게 지급하며, 납포인트 수익을 통해 진급을 빨리할 수 있습니다.
6) 구매 후 평가를 하면 구매 납포인트의 20%를 돌려 드립니다.

콘텐츠 수 200

이진검색트리

머신러닝, AI & 알고리즘 구매수 0 2007.09.30 03:49:34
판매자 아크마 판매 납포인트 무료 평점 0점 / 총 0명 참여

template <class T>
struct node{
  int key;
  T data;
  node* left;
  node* right;
  node(int k, T x): key(k), data(x), left(0), right(0) {}
};

template <class T>
class binarySearchTree{
public:
  binarySearchTree(): root(0) {
  //ARG:
  //DESC: root is initialized with 0.
  }
  ~binarySearchTree(){
  //ARG:
  //DESC: memory allocated for search tree is freed.
    _delete(root);
  }
  T* search(int k) const {
  //ARG:
  //DESC: return value is data item of a node with key == k,
  //      if such a node exists; otherwise it is 0.
    return search(root, k);
  }
  void insert(int k, T d){
   //ARG: binary search tree rooted at root (can be empty).
   //DESC: binary search tree contains node with key k
   //      and data item d.
    insert(root, k, d);
  }
  void insertAsRoot(int k, T d){
  //ARG: binary search tree rooted at root (can be empty).
  //DESC: binary search rooted at root. The node at the root
  //      has key k and data item d.
    insertAsRoot(root, k, d);
  }
  void remove(int k) {
  //ARG: binary rooted at root.
  //DESC: binary tree rooted at root from  which a node
  //      with key k has been removed.
    remove(root, k);
  }
  void inOrderWalk() const {
  //ARG: binary search tree rooted at root.
  //DESC: all keys stored in the tree are printed in
  //      increasing order on stdout.
    inOrderWalk(root);
  }
  int minKey() const {
  //ARG: non-empty binary search tree rooted at root.
  //DESC: the minimum key stored in the tree is returned.
    return minKey(root);
  }
  int maxKey() const {
  //ARG: non-empty binary search tree rooted at root.
  //DESC: the maximum key stored in the tree is returned.
    return maxKey(root);
  }
private:
  node<T>* root;
  void _delete(node<T>* p);
  T* search(node<T>* p, int k) const;
  void insert(node<T>* &p, int k, T d);
  void rotateRight(node<T>* p);
  void rotateLeft(node<T>* p);
  void insertAsRoot(node<T>* &p, int k, T d);
  void remove(node<T>* &p, int k);
  void inOrderWalk(node<T>* p) const;
  int minKey(node<T>* p) const;
  int maxKey(node<T>* p) const;
};

template <class T>
void binarySearchTree<T>::_delete(node<T>* p){
//ARG:
//DESC: memory allocated for tree rooted at p is freed.
  if(p != 0){
    _delete(p->left);
    _delete(p->right);
    delete p; 
  }
}

template <class T>
T* binarySearchTree<T>::search(node<T>* p, int k) const{
//ARG:
//DESC: return value is data item of a node with key == k,
//      if such a node exists; otherwise it is 0.
  if(p == 0) return 0;
  int kk = p->key;
  if(kk == k) return &(p->data);
  if(kk < k) return search(p->left, k);
  else return search(p->right, k);
}

template <class T>
void binarySearchTree<T>::insert(node<T>* &p, int k, T d){
//ARG: binary search tree rooted at p (can be empty).
//DESC: binary search tree rooted at p that contains node
//      with key k and data item d.
  if(p == 0)
    p = new node<T>(k ,d);
  else if(k < p->key) //convention, could also use <=
    insert(p->left, k, d);
  else
    insert(p->right, k, d);
}

template <class T>
void binarySearchTree<T>::rotateRight(node<T>* p){
//ARG: (1) p->left != 0
//     (2) binary search tree rooted at p.
//DESC: binary search tree rooted at p->left.
  node<T>* q = p->left;
  p->left = q->right;
  q->right = p;
  p = q;
}

template <class T>
void binarySearchTree<T>::rotateLeft(node<T>* p){
//ARG: (1) p->right != 0
//     (2) binary search tree rooted at p.
//DESC: binary search tree rooted at p->right.
  node<T>* q = p->right;
  p->right = q->left;
  q->left = p;
  p = q;
}

template <class T>
void binarySearchTree<T>::insertAsRoot(node<T>* &p, int k, T d){
//ARG: binary search tree rooted at p (can be empty).
//DESC: binary search rooted at p. The node pointed to
//      by p has key k and data item d.
  if(p == 0)
    p = new node<T>(k ,d);
  else if(k < p->key){ //convention; could also use <=
    insertAsRoot(p->left, k, d);
    rotateRight(p);
  } else{
    insert(p->right, k, d);
    rotateLeft(p);
  }
}

template <class T>
void binarySearchTree<T>::remove(node<T>* &p, int k){
//ARG: binary rooted at p.
//DESC: binary tree rooted at p from  which a node
//      with key k has been removed if there was one.
  if(p == 0) return;
  int kk = p->key;
  if(k < kk){
    remove(p->left, k);
    return;
  }
  if(k > kk){
    remove(p->right, k);
    return;
  }
  node<T>* q = p;
  node<T>* r = p->right;
  if(r == 0)
    p = p->left;
  else{
    while(r->left != 0)
      rotateRight(r);
    r->left = p->left;
    p = r;
  }
  delete q;
}

template <class T>
void binarySearchTree<T>::inOrderWalk(node<T>* p) const {
//ARG: binary search tree rooted at p.
//DESC: all keys stored in the tree rooted at p
//     are printed in increasing order on stdout.
  if(p != 0){
    inOrderWalk(p->left);
    std::cout << "[" << p->key << "]";
    inOrderWalk(p->right);
  }
}

template <class T>
int binarySearchTree<T>::minKey(node<T>* p) const {
//ARG: non-empty binary search tree rooted at p.
//DESC: the minimum key stored in the tree rooted
//      at p is returned.
  while(p->left != 0)
    p = p->left;
  return p->key;
}

template <class T>
int binarySearchTree<T>::maxKey(node<T>* p) const {
//ARG: non-empty binary search tree rooted at p.
//DESC: the maximum key stored in the tree rooted
//      at p is returned.
  while(p->right != 0)
    p = p->right;
  return p->key;
}

 

 

 

 


 

모르는 것이 무엇인지 스스로 정리하고 질문하는 습관을 가집시다.
무성의/광범위하거나 직접 해보지 않고 올리는 질문은 서로를 피곤하게 합니다.
질문쪽지는 사절이오니 게시판에 글을 남겨주세요. 그래야 다같이 공유할 수 있으니까요.


profile
YJ 2008.03.10 15:52
C++ 맞죠? ^^;.
profile
Sadcy 2008.08.11 15:15

템플릿을 사용하셨네요-^^
잘 사용하겠습니다:)

profile
원조달구지 2009.11.13 14:58
머리 아프네요..어렵습니다.
profile
페라리블루 2010.04.08 18:47
아~ 머리아퍼.. ^^'
profile
dosososo 2013.11.24 14:22
감사합니다 ㅎ
profile
시나브로69 2017.06.24 15:10
좋은 자료 감사합니다.
search
List of Articles
번호 분류 제목 평점 포인트 판매자 등록일 구매수 조회 수
공지 공공의 목적으로 공유하고자 하는 소프트웨어는 '소프트웨어 자료실'에 업로드를 요청드립니다.
공지 구매후 평점 댓글을 남겨주시면 구매포인트의 20%를 돌려드립니다.
200 펌웨어 & 코딩언어 AVR 128에 시리얼통신칩 설정 참고 [1] 무료 어부 2015-11-17 0 413
199 펌웨어 & 코딩언어 혼자 연구하는 c/c++ 입니다. [26] 무료 신념짱가 2013-08-23 0 1144
198 펌웨어 & 코딩언어 컴구조 공부중에 질문이요 [1] 무료 왈라c 2011-01-25 0 2983
197 펌웨어 & 코딩언어 The Art of Assembly Language [3] 무료 TreeOfDream 2011-01-16 0 2602
196 펌웨어 & 코딩언어 [펌]C언어의 기본구조 [21] 무료 스마트패넘 2010-12-16 0 3681
195 펌웨어 & 코딩언어 C언어 관련 레퍼런스 자료입니다.(C 라이브러리 사용시 유용함.) [14] 무료 승아 2010-11-06 0 3379
194 펌웨어 & 코딩언어 c언어 성적표 프로그램 [3] 무료 RTEE 2010-10-05 0 2931
193 펌웨어 & 코딩언어 c언어 잘할수있는게 [4] 무료 아기 2010-09-27 0 2436
192 펌웨어 & 코딩언어 C 언어 [3] 무료 연희야 2010-08-12 0 2386
191 펌웨어 & 코딩언어 윈도우 7 새 시스템 파티션을 만들거나 기존 시스템 파티션을 찾을 수 없습니다 무료 아크마 2010-07-22 0 8022
190 펌웨어 & 코딩언어 자바 개발 툴 [2] 무료 TreeOfDream 2010-06-21 0 2879
189 펌웨어 & 코딩언어 제가 사용하는 계산기 프로그램입니다. [7] 무료 타미아 2010-06-04 0 3716
188 펌웨어 & 코딩언어 모바일 프로그래밍 res파일 [2] 무료 니나노올 2010-06-02 0 2162
187 펌웨어 & 코딩언어 모바일 프로그래밍 게임소스 [1] 무료 니나노올 2010-06-02 0 2348
186 펌웨어 & 코딩언어 MFC로 영상이미지 역상처리하는 프로그램 [3] 무료 나얼제자 2010-05-25 0 3467
185 펌웨어 & 코딩언어 아스키 코드표 [3] 무료 siwall 2010-05-24 0 5071
184 펌웨어 & 코딩언어 RTOS 자료 두번째. [4] 무료 워터보이 2010-05-13 0 1923
183 펌웨어 & 코딩언어 RTOS 자료. [4] 무료 워터보이 2010-05-13 0 2238
182 펌웨어 & 코딩언어 InnoSetup 셋업 프로그램 만드는 프리웨어 [2] 무료 전자과조교 2010-05-04 0 2159
181 펌웨어 & 코딩언어 freescale사의 s12 instruction set 요약입니다. [2] 무료 아싸라삐야 2010-05-01 0 2303
  • 우정을 위한 최대의 노력은 벗에게 그의 결점을 스스로 깨닫게 하는 일이다.
    - 라 로쉐호크
  • * 납포인트 정보 *
  • 글 작성 : 3
  • 댓글 작성 : 1
저작권법에 위배되는 콘텐츠는 등록 불가하며, 저작물에 대한 권리는 저작자에게 있습니다.
Copyright 2006-2021 © hardwareis.com, All rights reserved.