| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Based on Abstract AVL Tree Template v1.5 by Walt Karas | 4 * Based on Abstract AVL Tree Template v1.5 by Walt Karas |
| 5 * <http://geocities.com/wkaras/gen_cpp/avl_tree.html>. | 5 * <http://geocities.com/wkaras/gen_cpp/avl_tree.html>. |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * | 10 * |
| (...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 else | 951 else |
| 952 set_gt(parent, new_node); | 952 set_gt(parent, new_node); |
| 953 } | 953 } |
| 954 | 954 |
| 955 return h; | 955 return h; |
| 956 } | 956 } |
| 957 | 957 |
| 958 } | 958 } |
| 959 | 959 |
| 960 #endif | 960 #endif |
| OLD | NEW |