-
Updated
Aug 3, 2022
Data structures
A data structure is a particular way storing and organizing data in a computer for efficient access and modification. Data structures are designed for a specific purpose. Examples include arrays, linked lists, and classes.
Here are 17,355 public repositories matching this topic...
-
Updated
Aug 1, 2022 - JavaScript
-
Updated
Jul 12, 2022 - Markdown
-
Updated
Jul 21, 2022 - JavaScript
-
Updated
May 10, 2022 - Swift
-
Updated
Mar 18, 2022 - C++
-
Updated
Aug 5, 2022 - JavaScript
-
Updated
Aug 5, 2022 - C++
-
Updated
Jul 7, 2022 - C
-
Updated
Aug 6, 2022 - TypeScript
Description
Use the new go1.18 FuzzXxx tests to test cipher algorithm encryption and decryption.
The tests should accept fuzzed strings, encrypt then decrypt them, and check for equality with the original. This can help catch more elusive bugs in the code.
-
Updated
Aug 3, 2022 - Java
-
Updated
Aug 5, 2022 - Rust
-
Updated
Aug 3, 2022 - Java
-
Updated
Aug 6, 2022 - Jupyter Notebook
-
Updated
Aug 6, 2022 - JavaScript
-
Updated
May 29, 2022 - JavaScript
-
Updated
Jun 17, 2022
-
Updated
Aug 4, 2022 - Java
-
Updated
Apr 15, 2022
-
Updated
Jun 28, 2022 - Python
In the following file we have already ported some tests from Go to Rust:
https://github.com/crossbeam-rs/crossbeam-channel/blob/master/tests/golang.rs
The idea is to blindly port all the tests for Go channels line by line, which will give us additional confidence in the correctness of crossbeam-channel.
In the test file, you can find stubs with links to the original tests written in Go and
steps to reproduce
Write a loop, from 1 to 80000, each time add a random int to the max heap.
In theory it takes very little time(NlogN, N=80000, <1sec ), but the program does take a long time.
I'v also tested the BinaryHeap in https://github.com/SolutionsDesign/Algorithmia, it performs well, so it is probably due to the bad algorithm.
-
Updated
Jul 21, 2022 - C++
-
Updated
May 13, 2022
-
Updated
Jun 28, 2022 - Swift
-
Updated
Jul 19, 2022 - C#
-
Updated
Dec 23, 2020 - Python
Add a K-D tree.
There is no implementation of that data structure here yet.
Could be a good first issue.