-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Labels
Hacktoberfest-acceptedenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
We're looking for contributors to implement a custom LinkedList data structure in Java. LinkedLists are fundamental data structures used in various applications, and this issue provides an opportunity to practice Java programming while understanding how LinkedLists work internally.
Task:
- Create a new Java class called
CustomLinkedList. - Implement methods to add elements to the LinkedList (e.g.,
add,addFirst,addLast). - Implement methods to remove elements from the LinkedList (e.g.,
remove,removeFirst,removeLast). - Implement a method to display the contents of the LinkedList.
- Include Javadoc comments to explain the purpose of each method and provide usage examples.
Testing:
- Test your LinkedList implementation by adding, removing, and displaying elements.
- Write test cases to ensure the correctness of your implementation.
Additional Notes:
- LinkedLists are commonly used in computer science and are the basis for more complex data structures.
- This contribution aligns with our goal of providing educational resources for Java learners.
Feel free to ask any questions or seek help if you encounter any challenges while working on this issue. We appreciate your contribution!
Metadata
Metadata
Assignees
Labels
Hacktoberfest-acceptedenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers