mirror of
https://github.com/Didnelpsun/CS408.git
synced 2026-02-06 20:34:13 +08:00
7 lines
115 B
C++
7 lines
115 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "head.h"
|
|
|
|
// 定义一个顺序树数组
|
|
typedef int SequenceTree[MAXSIZE];
|