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

**Is your data structure request related to a computational problem? Please describe.** I'm working on a Conflict-Free Replicated Data Type (CRDT) for strings, and I would like to use a...

data structure request

1. I was unable to find release build of this project on nuget.org. View the search [here](https://www.nuget.org/packages?q=C-Sharp-Algorithms) 2. The nuspec file is publishing only the binaries for the Algorithm Project....

when code write is var s = new SLinkedList(); foreach (var item in s) { Console.WriteLine(item); } function MoveNext _current is null public bool MoveNext() { _current = _current.Next; return...

### Description Optimized item removal from UndirectedSparseGraph by only trying to remove the given item from its neighbors' adjacency lists, instead of all vertices'. Optimized the Contains function of the...

**Is your feature request related to a problem? Please describe.** In an application, I have to create an UndirectedSparseGraph from which I then filter out (i.e. RemoveVertex) many nodes, which...

feature

### Description Added the Aho-Сorasiсk algorithm, which implements an effective search for all occurrences of all sample strings in a given string. The task. The input receives several lines pattern...

Implement the Bloom Filters data structure.

data structure request

The task. The input receives several lines pattern [i] and line s. Our task is to find all possible occurrences of pattern [i] strings in s.

algorithm request

### Description According to my created issue #142 I implemented Linear Sieve of Eratosthenes. ### Checklist - [x] An issue was first created **before** opening this pull request - [x]...

As suggested in #127, I'd like to implement this algorithm according to implementation shared here: [E-maxx.ru](http://e-maxx.ru/algo/prime_sieve_linear)