Python icon indicating copy to clipboard operation
Python copied to clipboard

Sorted linked list added

Open mjk22071998 opened this issue 5 months ago • 0 comments

Describe your change:

I added a new sorted linked list implementation in Python, which includes methods for inserting, deleting, searching, and displaying nodes, removing duplicates and reversing the list. Solves Issue #11768

Checklist:

  • [x] I have read CONTRIBUTING.md.
  • [x] This pull request is all my own work -- I have not plagiarized.
  • [x] I know that pull requests will not be merged if they fail the automated tests.
  • [x] This PR only changes one algorithm file.
  • [x] All new Python files are placed inside an existing directory.
  • [x] All filenames are in all lowercase characters with no spaces or dashes.
  • [x] All function and variable names follow Python naming conventions.
  • [x] All function parameters and return values are annotated with Python type hints.
  • [x] All functions have doctests that pass the automated testing.
  • [x] All new algorithms include at least one URL that points to Wikipedia or another similar explanation.

mjk22071998 avatar Oct 01 '24 08:10 mjk22071998