comparer.hpp

来自「AVL Tree implementation: I also include」· HPP 代码 · 共 14 行

HPP
14
字号
/************************** * The Comparer classes *************************/template<class T>class ByDivision{	public:		bool operator()(const T& x, const T& y) const		{			if (x < y) return true;			else return false;		}};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?