-
Updated
Oct 22, 2021
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 14,087 public repositories matching this topic...
-
Updated
Oct 22, 2021 - JavaScript
-
Updated
Oct 23, 2021
-
Updated
Oct 24, 2021 - JavaScript
-
Updated
Oct 24, 2021 - Java
-
Updated
Oct 12, 2021 - Swift
-
Updated
Oct 6, 2021 - C++
What about create a design pattern directory with the most popular design patterns examples?
We can create some rules like: have to be an explanation about the design pattern, the structure and one real world example.
The directory can be:
(folder) Design Patterns
-- (folder) Abstract Factory
-- -- AbstractFactory.js
-- -- AbstractFactoryTest.js
-- -- REAME.md
I can send some :
Star Patterns
bitmap/bit array
-
Updated
Sep 20, 2021 - Java
-
Updated
Oct 23, 2021
-
Updated
Oct 24, 2021 - Go
-
Updated
Sep 23, 2021 - JavaScript
-
Updated
Oct 11, 2021 - Python
-
Updated
Oct 9, 2021
-
Updated
Oct 10, 2021 - Java
-
Updated
Oct 10, 2021
-
Updated
Oct 24, 2021 - C++
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
Jun 26, 2021
-
Updated
Dec 23, 2020 - Python
-
Updated
Oct 24, 2021 - Java
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
-
Updated
Sep 8, 2021 - Swift
-
Updated
Oct 24, 2021 - Rust
-
Updated
Oct 22, 2021 - JavaScript
-
Updated
Jul 21, 2021 - JavaScript
-
Updated
Oct 1, 2021 - TypeScript
In this file I have written a c++ code to find the reverse of a string without using functions.
Description of Change
Checklist