[알고리즘] 알고리즘 Hash function

 1  [알고리즘] 알고리즘 Hash function-1
 2  [알고리즘] 알고리즘 Hash function-2
 3  [알고리즘] 알고리즘 Hash function-3
 4  [알고리즘] 알고리즘 Hash function-4
 5  [알고리즘] 알고리즘 Hash function-5
※ 미리보기 이미지는 최대 20페이지까지만 지원합니다.
  • 분야
  • 등록일
  • 페이지/형식
  • 구매가격
  • 적립금
자료 다운로드  네이버 로그인
소개글
[알고리즘] 알고리즘 Hash function에 대한 자료입니다.
목차
- 알고리즘 표지
- Hash function 프로그래밍 소스
- 출력결과
본문내용
#include
#include
#include
#include
#include

const HashTblSize = 11;
const SymbolSize = 10;

struct node {
char symbol[SumbolSize];
struct node *next;
struct node(char s[]) {strcpy(symbol, s); next=0;}
};

struct node *HashTbl[HashTblSize];

int hash(char *);
void InsertHashTbl(char *);
void PrintHashTbl();
void InitHashTbl();

void main(int argc, char *argv[])
{
참고문헌
C++ 프로그래밍
하고 싶은 말
알고리즘 수업 내용 중 Hash function 프로그래밍 소스입니다. C++ 언어로 짜여 있습니다. 참고하십시오.