Skip to content
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

Closed
wants to merge 4 commits into from

Conversation

Kedar-27
Copy link

@Kedar-27 Kedar-27 commented Oct 5, 2021

Please merge my commit as mark it as "hacktoberfest-accepted"

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
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] {
Copy link
Member

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> {
Copy link
Member

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
Copy link
Member

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.

@anantcodes
Copy link
Member

Hey, we need a test for your implementation. Please check other merged PRs out to see how people usually test.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
@carloshmartins
Copy link
Contributor

This will be closed due to inactivity.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants