* TO check is a particular element exists or not * @param {any} _val * @returns {Boolean} exists or not
(_val)
| 63 | * @returns {Boolean} exists or not |
| 64 | */ |
| 65 | find(_val) { |
| 66 | const temp = searchAVLTree(this.root, _val, this) |
| 67 | return temp != null |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * |
no test coverage detected