src/work/deba/bin_heap.h
changeset 928 71dc900ee30f
parent 698 625de6f1e766
equal deleted inserted replaced
0:c50e1167a4fb 1:d77e9761fb46
    56  * Bocs, most faradt vagyok, majd egyszer leforditom. (Misi)
    56  * Bocs, most faradt vagyok, majd egyszer leforditom. (Misi)
    57  *
    57  *
    58  */
    58  */
    59 
    59 
    60 
    60 
    61 #ifndef HUGO_BIN_HEAP_H
    61 #ifndef LEMON_BIN_HEAP_H
    62 #define HUGO_BIN_HEAP_H
    62 #define LEMON_BIN_HEAP_H
    63 
    63 
    64 ///\ingroup auxdat
    64 ///\ingroup auxdat
    65 ///\file
    65 ///\file
    66 ///\brief Binary Heap implementation.
    66 ///\brief Binary Heap implementation.
    67 
    67 
    68 #include <vector>
    68 #include <vector>
    69 #include <utility>
    69 #include <utility>
    70 #include <functional>
    70 #include <functional>
    71 
    71 
    72 namespace hugo {
    72 namespace lemon {
    73 
    73 
    74   /// \addtogroup auxdat
    74   /// \addtogroup auxdat
    75   /// @{
    75   /// @{
    76 
    76 
    77    /// A Binary Heap implementation.
    77    /// A Binary Heap implementation.
   239     return hole;
   239     return hole;
   240   }
   240   }
   241 
   241 
   242   ///@}
   242   ///@}
   243 
   243 
   244 } // namespace hugo
   244 } // namespace lemon
   245 
   245 
   246 #endif // BIN_HEAP_HH
   246 #endif // BIN_HEAP_HH