C-Sharp-Algorithms icon indicating copy to clipboard operation
C-Sharp-Algorithms copied to clipboard

:books: :chart_with_upwards_trend: Plug-and-play class-library project of standard Data Structures and Algorithms in C#

Results 53 C-Sharp-Algorithms issues
Sort by recently updated
recently updated
newest added

### Description fixed issue #155 improve data struct: - Pop now work like a stack (throw InvalidOperationException when pop an empty CircularBuffer) - No extra item in the inner array...

Optimization BubbleSort. No swap break for ### Description ### Checklist - [ ] An issue was first created **before** opening this pull request - [ ] The new code follows...

Hi, Are there any plans to migrate this project to .net standard and/or have a nuget package?

feature

The workflow build_and_test.yml is referencing action actions/checkout using references v1. However this reference is missing the commit [a6747255bd19d7a757dbdda8c654a9f84db19839](https://github.com/actions/checkout/commits/a6747255bd19d7a757dbdda8c654a9f84db19839) which may contain fix to the some vulnerability. The vulnerability fix that...

this is my first commit to a public repo, so I don't know if I'm doing it right ### Description fixed issue #11 ### Checklist - [x] An issue was...

### Description ### Checklist - [ ] An issue was first created **before** opening this pull request - [ ] The new code follows the [contribution guidelines](CONTRIBUTING.md) - [ ]...

### Description fix typo , anargram => anagram

After adding some random items to the circular buffer, using foreach or any function to enumerate the buffer does not produce anything Here is a sample code: `int[] values =...

### Describe the bug The `IsAnagram` function is not checking per-element counts. It is only checking if they have the same elements, but not if the count of each element...

### Description Fixed #137 . This bug occurs when _getNextLevel() method returned 0. Fixed #138 and #139 . This bug occurs because of skip list was сircular. Fixed #140. This...