[자료구조1] Selection Tree - 13주차
닫기
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
해당 자료는 8페이지 까지만 미리보기를 제공합니다.
8페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

[자료구조1] Selection Tree - 13주차에 대한 보고서 자료입니다.

목차

1주 - Real Number Representation
2주 - Magic Square
3주 - Basic Recursion
4주 - Recursion
5주 - Sorting Performance analysis
6주 - Exercising Array
7주 - Evaluation of Expression
8주 - Circular Queue & Maze
9주 - Stack & Queue using Linked list
10주 - Equivalenece Class
11주 - Binary Search Tree
12주 - Priority Queue
13주 - Selection Tree
14주 - Union-Find Algorithm

본문내용

// SelectionTree.h
#define TREE_SIZE 8// 트리및런사이즈
#define MAX_KEY 10000// 런에들어갈수있는키의최대값
typedef struct _treeNode// Selection Tree의노드
{
int key;// node의key
int idx;// node의키값이위치하는run의번호
} treeNode;
typedef struct _SelectionTree// Selection Tree 구조체
{
treeNode tree[TREE_SIZE];// Tree를나타낼배열
} SelectionTree;
typedef struct _SetOfRuns// run들의구조체
{
int run[TREE_SIZE][TREE_SIZE];
int topOfRuns[TREE_SIZE];
} SetOfRuns;

키워드

  • 가격3,000
  • 페이지수23페이지
  • 등록일2010.05.24
  • 저작시기2008.6
  • 파일형식압축파일(zip)
  • 자료번호#859722
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니