자료구조프로젝트
페이지 정보
작성일 23-08-02 16:24
본문
Download : 자료구조프로젝트.hwp
자료구조프로젝트
순서
Download : 자료구조프로젝트.hwp( 98 )
자료구조프로젝트
설명
program
#include
#include
#include
#define LINE_MAX 256 /* Max: 255 characters per line */
#define WORD_MAX 20
#define TOP_SINGLE_MAX 20
#define TOP_PAIR_MAX 20
typedef struct list_single *list_single_ptr;
typedef struct list_pair *list_pair_ptr;
typedef struct list_pair {
char str[WORD_MAX];
int pair_freq;
list_pair_ptr plink;
}list_pair_node;
typedef struct list_single {
char str[WORD_MAX];
int single_freq;
list_single_ptr slink;
list_pair_ptr plink;
}list_single_node;
typedef struct {
char str[WORD_MAX];
int freq;
}single;
typedef struct {
char prestr[WORD_MAX];
char poststr[WORD_MAX];
int freq;
}pair;
void cut_special_ch (char st);
void cut_one_ch(char st);
void make_…(skip)
레포트/기타
,기타,레포트
자료구조프로젝트 , 자료구조프로젝트기타레포트 ,
다.


