NeoAlgo icon indicating copy to clipboard operation
NeoAlgo copied to clipboard

Bringing all Data Structures and Algorithms under one Roof ⚡

Results 7 NeoAlgo issues
Sort by recently updated
recently updated
newest added

## 🚀 Feature This code is to find a particular element in an sorted array when we do not know the length of the array and are not allowed to...

Java

https://github.com/HarshCasper/NeoAlgo/blob/4f1e5bdd6d9d899fa354de94740e0aecf5ecd2be/Go/search/binary_search/binary_search.go#L24 Here is a bug at the above line, which will case an overflow if `low = 10^9` and `high = 1`, because `10^9 + 1` will cause overflow. So...

Go
Proposal
GSSoC'21

## 🚀 Feature 3-partition problem: Given a set S of positive integers, determine if it can be partitioned into three disjoint subsets that all have the same sum, and they...

Proposal
GSSoC'21

### Have you read the [Contributing Guidelines on Pull Requests](https://github.com/TesseractCoding/NeoAlgo/blob/master/CONTRIBUTING.md#pull-requests)? (Write your answer here.) ### Description (Write your answer here.) ### Checklist - [x] I've read the contribution guidelines. -...

Thank You for Accepting PR. Go Go Hacktoberfest 22'

### Have you read the [Contributing Guidelines on Pull Requests](https://github.com/TesseractCoding/NeoAlgo/blob/master/CONTRIBUTING.md#pull-requests)? Yes, I have read and followed the mentioned guidelines. ### Description I saw that there was only KMP algorithm mentioned...

### Have you read the [Contributing Guidelines on Pull Requests](https://github.com/TesseractCoding/NeoAlgo/blob/master/CONTRIBUTING.md#pull-requests)? Yes ### Description - Implement iterative version for tree traversal including inorder, preorder, postorder - Improve printing output for easier...