• 大小: 14KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-11
  • 语言: C/C++
  • 标签: C++  RTree  

资源简介

基于C++ Template的实现RTree,很有借鉴意义。

资源截图

代码片段和文件信息

#include 
#include 
#include 

#include “RTree.h“


//
// MemoryTest.cpp
//
// This demonstrates a use of RTree
//

// Use CRT Debug facility to dump memory leaks on app exit
#ifdef WIN32
  // The following macros set and clear respectively given bits
  // of the C runtime library debug flag as specified by a bitmask.
  #ifdef   _DEBUG
    #define  SET_CRT_DEBUG_FIELD(a) \
              _CrtSetDbgFlag((a) | _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG))
    #define  CLEAR_CRT_DEBUG_FIELD(a) \
              _CrtSetDbgFlag(~(a) & _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG))
  #else
    #define  SET_CRT_DEBUG_FIELD(a)   ((void) 0)
    #define  CLEAR_CRT_DEBUG_FIELD(a) ((void) 0)
  #endif
#endif //WIN32

//
// Get a random float b/n two values
// The

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        7401  2004-02-22 23:00  MemoryTest.cpp
     文件         970  2005-01-20 18:44  README.TXT
     文件        1378  2004-02-23 19:50  Test.cpp
     文件       42956  2005-01-20 18:45  RTree.h

评论

共有 条评论