1)对于非结构体数组,可以使用

int a[100]

memset(a,0,sizeof(int)*100) 按字节赋值为0,或者-1;

2) 对于结构体 PATH

APATH = new PATH[100];

再写初始化函数,不能使用memset