• 통합검색
  • 대학레포트
  • 논문
  • 기업신용보고서
  • 취업자료
  • 파워포인트배경
  • 서식

전문지식 1,992건

ook - paper ③ Paper - trees - notebook - trees ④ Notebook - paper - paper - trees ⑤ Tree - paper - notebook - paper 19. 다음 글에서 “I"의 심정은? 5 I don't have any money. But I have youth in my heart. I have my song and the guitar. And I have the sun in the sky. ① worried ② angry ③ honest ④ t
  • 페이지 3페이지
  • 가격 800원
  • 등록일 2006.11.28
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
*/ printf(\"< Create sub tree > (%d/%d)\\n \", i, n-2); printf(\"%c:%d = %c:%d + %c:%d\\n\", r->symbol, r->oftenness, x->symbol, x->oftenness, y->symbol, y->oftenness); print_MY(); } r = Remove(); /* 우선 순위 대기열에 있는 트리의 뿌리를 빼와서 r에 대입합니다 */
  • 페이지 6페이지
  • 가격 7,000원
  • 등록일 2020.02.22
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
tree_ptr MakeTree(int num){ /* 트리 생성 */ tree_ptr Newtree; Newtree = malloc(sizeof(struct TreeType)); if(Newtree == NULL){ printf("Malloc() couldn't find any memory\n"); exit(1); } Newtree->key = num; Newtree->count = 0; Newtree->left_child = NULL; Newtree->right_child = NULL; Newtree
  • 페이지 10페이지
  • 가격 1,000원
  • 등록일 2003.09.28
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
1) 프로그램 개요 문제를 풀기에 앞서 Heap의 성질에 대해 간단히 언급하겠다. Heap tree의 특징은 큰값일수록 tree의 상위 level로 위치하게 하고 작은 값일수록 tree의 최하위로 이동하게 된다. 즉, root에 있는 값이 tree 전체 값들 중 가장 큰 값이라
  • 페이지 5페이지
  • 가격 800원
  • 등록일 2009.05.11
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
lab
1. 개요 구조체와 Linked List를 익히고, 사용법을 숙지한다. 그리고 이를 이용하여 Binary Tree(이진tree)를 구성하는 코드를 프로그래밍한다. 첫 번째 tree부터 level 1로 정하고, 하위 tree로 갈수록 level이 증가한다. 만들어진 tree에서 숫자를 제거하
  • 페이지 3페이지
  • 가격 1,800원
  • 등록일 2012.08.31
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
treeNode * tree, stackNode * stack); void postSearch(treeNode * tree, stackNode * stack); void visit_operation(treeNode * tree, stackNode * stack); float get_operate(treeNode * t2, treeNode * t1, char c); void StackShow(stackNode * stack, char c, char * str); (2) 실행결과 화면 [트리생
  • 페이지 15페이지
  • 가격 2,000원
  • 등록일 2005.01.18
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
tree_pointer binary_search(tree_pointer ptr, int key){ tree_pointer temp; while(ptr){ if(ptr->Key==key) // 동일값 : NULL 반환 return NULL; else if(ptr->Key>key){ if(ptr->left==NULL) // 트리 끝 temp=ptr; ptr=ptr->left; // 포인터 왼쪽이동 } else if(p
  • 페이지 50페이지
  • 가격 5,000원
  • 등록일 2010.05.26
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct node *tree_pointer; struct node { int comnum; int jaego; int jaejumun; char *comsul; tree_pointer left; tree_pointer right; }; tree_pointer headp; 없음
  • 페이지 10페이지
  • 가격 3,000원
  • 등록일 2006.05.05
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
Tree::Error() { cerr<<"수식을 잘못 입력하였습니다."; } <main 함수> #include "Calculat_Tree.h" int main() { for(int i=0;i<5;i++) { Calculat_Tree temp; cin>>temp; cout<<temp<<endl; temp.cal(); cout<<endl; } return 0; } 4. 실행결과 화면출력 5. 느낀점 트리
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2005.11.12
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
1. Data Mining Models Supervised Modeling Supervised Prediction Target Variable : Continuous (or Discrete) Regression Analysis, Regression Tree, Neural Network Supervised Classification Target Variable : Discrete Discrimination Analysis, Classification Tree, Neural Network Unsupervised Mode
  • 페이지 62페이지
  • 가격 3,000원
  • 등록일 2006.03.05
  • 파일종류 피피티(ppt)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
top