数据结构c++语言描述的源代码

源代码在线查看: double.h

软件大小: 531 K
上传用户: xiao11tian
关键词: 数据结构 语言 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				// file double.h
				#ifndef Double_
				#define Double_
				#include 
				#include 
				#include "dnode.h"
				#include "xcept.h"
				
				template
				class Double {
				   public:
				      Double() {LeftEnd = RightEnd = 0;}; 
				      ~Double(); 
				      int Length() const; 
				      bool Find(int k, T& x) const; 
				      int Search(const T& x) const; 
				      Double& Delete(int k, T& x); 
				      Double& Insert(int k, const T& x); 
				      void Output(ostream& out) const;
				   private:
				      DoubleNode *LeftEnd, *RightEnd;
				};
				
				#endif
							

相关资源