class node
{
public:
int m_value;
node * m_next;
protected:
private:
};
class IList
{
public:
node * m_phead;
node * m_ptail;
node m_head;
IList()
{
};
~IList()
{
};
BOOL insert(int par)
{ };
BOOL mergelist(IList &par)
{
};
void print()
{ };
BOOL generate(int * par,int len)
{ return TRUE;
}
BOOL find(int targ)
{ return FALSE;
};
void empty()
{
};
void cross(IList &par1,IList &par2)
{
}
};
int _tmain(int argc, _TCHAR* argv[])
{
你大爷的给你代码不结贴去死吧
}