| Algorithm 1. Isolation tree construction. |
|
Isolation tree: Inputs:X- input data, e - current tree height, l - height limit Output: an iTree 1: if or then 2: return 3: else 4: let be a list of attributes in X 5: randomly select an attribute 6: randomly draw a split value from and value of 7: 8: 9: return 10: 11: 12: 13: end if |