这是一本数据结构与算法书中所有算法的源代码,内容非常丰富,值得一看.

源代码在线查看: double.h

软件大小: 270 K
上传用户: yyyz
关键词: 算法 数据结构 源代码
下载地址: 免注册下载 普通下载 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
							

相关资源