/src/lib/storage/dictionary/avl_dictionary.e

http://github.com/tybor/Liberty · Specman e · 49 lines · 15 code · 5 blank · 29 comment · 0 complexity · 8a2c450066f68ad90cd5bf8b3af7da06 MD5 · raw file

  1. -- This file is part of a Liberty Eiffel library.
  2. -- See the full copyright at the end.
  3. --
  4. class AVL_DICTIONARY[V_, K_ -> COMPARABLE]
  5. --
  6. -- Associative memory. Values of type `V_' are stored using Keys of type `K_'.
  7. --
  8. -- Efficient implementation of DICTIONARY using an AVL balanced tree. AVL stands for the names of G. M. Adel'son-Velskii
  9. -- and E. M. Landis, two Russian mathematicians who first came up with this method of keeping the tree balanced.
  10. --
  11. inherit
  12. ABSTRACT_AVL_DICTIONARY[V_, K_]
  13. create {ANY}
  14. make, manifest_creation, default_create
  15. feature {}
  16. ordered (k1, k2: K_): BOOLEAN
  17. do
  18. Result := k1 < k2
  19. end
  20. a_new_node: AVL_DICTIONARY_NODE[V_, K_]
  21. do
  22. create Result
  23. end
  24. end -- class AVL_DICTIONARY
  25. --
  26. -- Copyright (C) 2009-2017: by all the people cited in the AUTHORS file.
  27. --
  28. -- Permission is hereby granted, free of charge, to any person obtaining a copy
  29. -- of this software and associated documentation files (the "Software"), to deal
  30. -- in the Software without restriction, including without limitation the rights
  31. -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  32. -- copies of the Software, and to permit persons to whom the Software is
  33. -- furnished to do so, subject to the following conditions:
  34. --
  35. -- The above copyright notice and this permission notice shall be included in
  36. -- all copies or substantial portions of the Software.
  37. --
  38. -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  39. -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  40. -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  41. -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  42. -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  43. -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  44. -- THE SOFTWARE.