-
Notifications
You must be signed in to change notification settings - Fork 20k
Generalize using generics. #65
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
Comments
Thanks for pointing that out @KylerSmith . @AnupKumarPanwar I would like to work on this issue. Can you please assign it to me |
Here is the linear search with generics #80 |
Thanks. |
Added generic binary search #82 |
Can we close this issue? |
hey guys, should i apply generics to Data Structures? |
@shubhamtewari Can you please point out which data structures, in particular, you want to apply generics? |
I can start with stacks, then lists, graphs, queues, and heaps.
Essentially I want to apply generics to all the data structures in the
DataStructures directory.
But stated above are where I'd like to start.
|
Sure. Go ahead. |
Enhancement
Description
Many of the algorithms, namely sorting, searching and the data structures, are using primitive types for the implementation of the algorithms. This could be generalized to any comparable type using generics.
The text was updated successfully, but these errors were encountered: