-
-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add - AVL Tree, Binary Search Tree & Heap Sort. #32
Conversation
Sorts an array using a heap. | ||
Heapsort can be performed in-place, but it is not a stable sort. | ||
*/ | ||
public func heapsort<T>(_ a: [T], _ sort: @escaping (T, T) -> Bool) -> [T] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test for the implementation is missing. Add test cases for demonstration.
Binary search tree using value types | ||
The tree is immutable. Any insertions or deletions will create a new tree. | ||
*/ | ||
public enum BinarySearchTree<T: Comparable> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test for the implementation is missing. Add test cases for demonstration.
} | ||
} | ||
|
||
// MARK: - Displaying tree |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test for the implementation is missing. Add test cases for demonstration.
Hey, we need a test for your implementation. Please check other merged PRs out to see how people usually test. |
This will be closed due to inactivity. |
Please merge my commit as mark it as "hacktoberfest-accepted"