|
BinaryTreeCreate.c */
treeNode * CreateTree(char * str);
treeNode * NewNode(int id, float value, char op);
void makesubTree(stackNode * s1, stackNode * s2);
treeNode * popNode(stackNode * stack);
/* treeStack.c */
stackNode * CreateStack();
int isEmpty(stackNode * List);
void push(stackNod
|
- 페이지 15페이지
- 가격 2,000원
- 등록일 2005.01.18
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
소스코드
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct node{ //노드를 저장할 구조체 변수선언
int key; //노드의 키값
int data; //노드의 데이터값
struct node *parent; //노드의 부모 포인트
struct node *left; //
|
- 페이지 10페이지
- 가격 2,000원
- 등록일 2009.06.24
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|