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

전문지식 47건

#include <stdio.h> #include <stdlib.h> #include <time.h> #define TRUE 1 #define FALSE 0 typedef struct BST {     int data;     struct BST *left;     struct BST *right; } BST; BST *make_node(); BST *init_BST(int); int insert_BST(BST *, int); int search
  • 페이지 1페이지
  • 가격 1,300원
  • 등록일 2012.11.13
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
실행 결과 Welcome to Binary Search Tree Program. [ Menu(M) : 1.Insert(I), 2.Delete(D), 3.Pre(P), 4.In(N), 5.Post(O), 6.Level(L), 7.DFS(F), 8.BFS(B), 9.Exit(X) ] Choice? i Menu '1' is has one argument..can't execution... Choice? i BST 'BST' is can't access Tree! Tree name is must BST1. Ch
  • 페이지 21페이지
  • 가격 3,000원
  • 등록일 2007.05.14
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
BST상에서 합니다. 각 영어 단어는 공백으로 구별되어야 하며, 영/소문자 구별을 하지 않습니다. 1. Preface 2 1.1 Objective 3 1.2 Project checklist 3 1.3 Deliverables 3 2. English Word Search Program 3 2.1 Flow chart 4 2.2 Code structure 5 3. Programming Code 6 4. Outp
  • 페이지 18페이지
  • 가격 4,000원
  • 등록일 2012.02.07
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
#include<stdio.h> #include<stdlib.h> typedef struct tree_node *tree_pointer; typedef struct tree_node { int Key; tree_pointer left; tree_pointer right; }tree_node; void insertToBT(tree_pointer *ptr, int num) ; tree_pointer binary_search(tree_pointer ptr, int key); void inOrderT
  • 페이지 50페이지
  • 가격 3,000원
  • 등록일 2010.05.26
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
0; } [BST]   [Release]   BST.vcxproj   BST.vcxproj.filters   BST.vcxproj.user   main.cpp [ipch]   [bst-fbac6902] [Release]   BST.exe   BST.pdb BST.sdf BST.sln BST.suo 3.85MB 파일 24, 폴더 5
  • 페이지 24페이지
  • 가격 3,000원
  • 등록일 2013.09.15
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음

취업자료 1건

데이터를 저장하는 노드와 연결정보를 가지는 포인터로 구성(head, tail)되어 있다, O(1), O(N):search 1. 자료구조 2. 딥러닝 3. 머신러닝 4. 선행대 5. 확률과 통계 6. 예상 자기소개서 / 면접 샘플 질문 7. 준비하며 느꼈던 점 및 드리고 싶은 말
  • 가격 10,000원
  • 등록일 2021.11.29
  • 파일종류 아크로벳(pdf)
  • 직종구분 기타
top