Richard Biener 于2025年8月6日周三 14:34写道:
> On Wed, 6 Aug 2025, ywgrit wrote:
>
> > I have the following question:
> >
> > // Way.h
> > struct waymapt
> > {
> > int fillnum;
> > int num;
> > };
> > typedef waymapt* waymappt;
> >
> > class wayobj
> > {
> > public:
> > int bound;
> > int *ma
On Wed, 6 Aug 2025, ywgrit wrote:
> I have the following question:
>
> // Way.h
> struct waymapt
> {
> int fillnum;
> int num;
> };
> typedef waymapt* waymappt;
>
> class wayobj
> {
> public:
> int bound;
> int *maparp;
> waymappt waymap;
> int makebound2(int fillnum, int ite
I have the following question:
// Way.h
struct waymapt
{
int fillnum;
int num;
};
typedef waymapt* waymappt;
class wayobj
{
public:
int bound;
int *maparp;
waymappt waymap;
int makebound2(int fillnum, int iters);
void create(int size);
};
// WayInit.cpp
#include
#includ