|
1&id=260
3) 목련의 특징, 목련 보는 것만 예쁜게 아니야!... 목련에 이런 효능이?, 온라인 중앙일보, 2015년 4월 7일,
https://www.joongang.co.kr/article/17528528#home
4) 백목련, 나무로닷컴,
http://www.namu-ro.com/tree_search/?code=0209
5) 자주목련, 트리인포,
https://www.
|
- 페이지 6페이지
- 가격 2,000원
- 등록일 2023.06.14
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
binary_search(int a[], int min, int max, int key);
void output(int a[]); // 출력함수
//------------------------ 메 인 함 수 ----------------------------
int main()
{
int a[MAX]; // 배열선언
int key;
int result;
init(a);
printf("[최종값 출력]\n");
merge_sort(a, 0, MAX-
|
- 페이지 10페이지
- 가격 1,300원
- 등록일 2004.11.16
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
1, v2;
// 초기화
Digraph = NULL;//Vertex
S = P = NULL;//STACK *S, *P;
DAGs = NULL;//DAG stack
Cnt = 0;
// 파일 입력
ifstream fin;
// dynamic allocation
fin.open(FILE_NAME);
fin >> N;
Digraph = new VERTEX[N];
Adjacency_List = new LINKED_LIST[N];// 생성
// ver
|
- 페이지 39페이지
- 가격 4,000원
- 등록일 2011.12.22
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
public RedBlackTree mkIndex(){
f = f1;
try{
while(!f.equals(null)){
BufferedReader br = new BufferedReader(new FileReader(f));
String word = null;
int lineNum = 0;
StringTokenizer strTok;
while(true){
String line = br.readLine();
lineNum++;
if(line == null) break
|
- 페이지 24페이지
- 가격 6,000원
- 등록일 2015.03.25
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
파일 이름을 입력하면 ex)input.txt
Minimum Spanning Tree를 구성할 수 있도록
노드간 연결해야 할 edge를 출력해준다.
2->4
4->5
1->2
2->3
어떤 파일을 넣더라도 양식에만 맞춘다면 정확한 값을 구할 수 있다! input.txt
in.txt
MST.cpp
|
- 페이지 5페이지
- 가격 2,000원
- 등록일 2005.04.14
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define LOOP 10
#define MAX 1000
int data1[MAX],data2[MAX];
int count;
void quicksort(int data1[], int left, int right);
void bin_inser_sort(int data2[], int n);
void main() {
int i, j, qsum, bsum;
|
- 페이지 1페이지
- 가격 800원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
트리 루트
public:
AvlTree();
~AvlTree();
AvlNode* Avl_MakeNode(); //AvlTree 노드 생성
bool Avl_Insert(); //AvlTree 노드 삽입
bool Avl_Delete_Traverse();//AvlTree 삭제할 노드 순회
bool Avl_Delete(); //AvlTree 노드 삭제
AvlNode* Avl_Search(); //AvlTree 노드 검색
bool Avl_Copy(
|
- 페이지 25페이지
- 가격 3,000원
- 등록일 2008.04.07
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
*new_node=NULL; //루트 노드, 새로 생성하는 노드를 위한 포인터 변수
while(1){
printf(" 1. Insert Node\n");
printf(" 2. Delete Node\n");
printf(" 3. Search Node\n");
printf("====================\n");
printf("Input(end : exit) : ");
fflush(stdin);
gets(input);
|
- 페이지 10페이지
- 가격 2,000원
- 등록일 2009.06.24
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
. B+-트리 노드 하나는 디스크 페이지 하나에 해당한다. B+-트리 노드의 할당, 반납은 별도의 디스크 페이지 관리 프로그램을 이용하여 디스크 페이지를 할당, 반납함으로써 이루어 진다. 1. 개요
2. 자료 구조 분석 문서
3. 함수 분석
|
- 페이지 67페이지
- 가격 3,000원
- 등록일 2005.11.22
- 파일종류 워드(doc)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#define LEFT_CHILD 0 //왼쪽 자식
#define RIGHT_CHILD 1 //오른쪽 자식
typedef struct node *tree_pointer; //구조체 포인터
typedef struct node { //구조체 선언
tree_pointer left_child; //트리 왼쪽 자식
|
- 페이지 4페이지
- 가격 1,000원
- 등록일 2004.11.16
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|