头文件:
#pragma once
#include 
#include 
using namespace std;
template
class List;
// 结点类
template
class NodeList
{
	friend class List;
public:
	NodeList();
	NodeList(Type d, NodeList *n = NU...
                            
                            
                                分类:
编程语言   时间:
2015-05-28 21:33:20   
                                阅读次数:
194
                             
                         
                    
                        
                            
                            
                                头文件:
#pragma once
#include 
#include 
using namespace std;
template
class List;
// 结点类
template
class NodeList
{
	friend class List;
public:
	NodeList();
	NodeList(Type d, NodeList *n = NULL, ...
                            
                            
                                分类:
编程语言   时间:
2015-05-28 21:32:23   
                                阅读次数:
186
                             
                         
                    
                        
                            
                            
                                //manage exit ==>delete process objectclass chExitMethodList;typedef void (*msgExitMethod)();class ETLLIB_DLL_DECLARRE chExitMethodWrap{	friend class ...
                            
                            
                                分类:
其他好文   时间:
2015-05-28 09:22:09   
                                阅读次数:
125
                             
                         
                    
                        
                            
                            
                                头文件:
#pragma once
#include 
using namespace std;
template
class List;
// 结点类
template
class NodeList
{
	friend class List;
public:
	NodeList();
	NodeList(Type d, NodeList *n = NULL);
priva...
                            
                            
                                分类:
编程语言   时间:
2015-05-27 15:58:28   
                                阅读次数:
239
                             
                         
                    
                        
                            
                            
                                头文件:
#pragma once
#include 
using namespace std;
template
class List;
// 结点类
template
class NodeList
{
	friend class List;
public:
	NodeList();
	NodeList(Type d, NodeList *n = NULL);
priva...
                            
                            
                                分类:
编程语言   时间:
2015-05-27 13:56:22   
                                阅读次数:
162
                             
                         
                    
                        
                            
                            
                                Problem DescriptionClaire and her little friend, ykwd, are travelling in Shevchenko's Park! The park is beautiful - but large, indeed. N feature spots...
                            
                            
                                分类:
其他好文   时间:
2015-05-27 08:31:51   
                                阅读次数:
126
                             
                         
                    
                        
                            
                            
                                Description Friend number are defined recursively as follows. (1) numbers 1 and 2 are friend number; (2) if a and b are friend numbers, so is ab...
                            
                            
                                分类:
其他好文   时间:
2015-05-24 23:11:08   
                                阅读次数:
228
                             
                         
                    
                        
                            
                            
                                Last week my friend brought me an evidence file duplicated from a Linux server, which distribution is CentOS 5.0 and the i18n is zh-tw. She wanna know...
                            
                            
                                分类:
系统相关   时间:
2015-05-24 15:29:29   
                                阅读次数:
215
                             
                         
                    
                        
                            
                            
                                //头文件
#ifndef _LIST_H
#define _LIST_H
#include
using namespace std;
template
class List;
template
class ListNode
{
	friend class List;
public:
	ListNode() :data(Type()), next(NULL)
	{}
	ListNod...
                            
                            
                                分类:
编程语言   时间:
2015-05-22 22:41:54   
                                阅读次数:
204
                             
                         
                    
                        
                            
                            
                                //头文件
#ifndef _LIST_H
#define _LIST_H
#include
using namespace std;
template
class CList;
template
class ListNode
{
	friend class CList;
public:
	ListNode() :data(Type()), next(NULL)
	{
	}
	Lis...
                            
                            
                                分类:
编程语言   时间:
2015-05-22 22:39:18   
                                阅读次数:
219