Topic: "orderedmap"
elliotchance/orderedmap
🔃 An ordered map in Go with amortized O(1) for Set, Get, Delete and Len.
Language: Go - Size: 68.4 KB - Last synced at: 14 days ago - Pushed at: 23 days ago - Stars: 937 - Forks: 71

rohansuri/adaptive-radix-tree
A fast and space efficient Radix tree in Java
Language: Java - Size: 7.48 MB - Last synced at: about 2 years ago - Pushed at: about 5 years ago - Stars: 97 - Forks: 12

cevaris/ordered_map
Python port of OrderedDict to Go
Language: Go - Size: 1.34 MB - Last synced at: 5 months ago - Pushed at: over 2 years ago - Stars: 69 - Forks: 13

metalim/jsonmap
Ordered map for JSON storage
Language: Go - Size: 58.6 KB - Last synced at: 16 days ago - Pushed at: 9 months ago - Stars: 17 - Forks: 1

haifenghuang/orderedmap
OrderedMap for go which support marshaling/unmarshaling(using json.Decoder).
Language: Go - Size: 10.7 KB - Last synced at: 10 months ago - Pushed at: about 4 years ago - Stars: 4 - Forks: 0

RealFax/order-map
implementation of high performance concurrent safe ordered map
Language: Go - Size: 43.9 KB - Last synced at: 11 months ago - Pushed at: 11 months ago - Stars: 3 - Forks: 0

arizansari80/c_generic_data_structure
Generic Data Structure Library for C language and a great way to learn pointer concept in c and c++
Language: C - Size: 46.9 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 3 - Forks: 1

secnot/orderedmap
OrderedMap is a Go implentation of a map that preserves the order of insertion, so key/value pais can be iterated in the order they where added
Language: Go - Size: 70.3 KB - Last synced at: 10 months ago - Pushed at: almost 8 years ago - Stars: 3 - Forks: 1

pigfu/orderedmap
a go ordered map that supports custom sorting rule
Language: Go - Size: 6.84 KB - Last synced at: 10 months ago - Pushed at: over 1 year ago - Stars: 2 - Forks: 0

CodeKunalTomar/SGPA-Calculator
This is a C++ program that calculates the SGPA (Semester Grade Point Average) for a single semester based on the grades obtained in each course.
Language: C++ - Size: 12.7 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 2 - Forks: 0

jfjlaros/ordered-map
ordered-map: Ordered map parser and writer.
Language: Python - Size: 34.2 KB - Last synced at: 21 days ago - Pushed at: almost 4 years ago - Stars: 2 - Forks: 0

SeedTactics/immutable-collections
Immutable collections for typescript
Language: TypeScript - Size: 1.72 MB - Last synced at: 11 days ago - Pushed at: about 1 month ago - Stars: 1 - Forks: 1

kazamori/orderedmap
An alternative generic ordered map in Go with de/serializing from/to JSON.
Language: Go - Size: 28.3 KB - Last synced at: 2 days ago - Pushed at: 3 months ago - Stars: 1 - Forks: 0

montag451/go-ojson
Serialize and deserialize JSON values while preserving object keys order
Language: Go - Size: 33.2 KB - Last synced at: about 1 month ago - Pushed at: 3 months ago - Stars: 1 - Forks: 0

memory-overflow/go-orderedmap
an avl tree based orderedmap for golang
Language: Go - Size: 12.7 KB - Last synced at: over 1 year ago - Pushed at: almost 2 years ago - Stars: 1 - Forks: 0

kkqy/gokvpairs
KeyValuePairs is a type that can hold the order of keys of json in Golang. We can use it to preserve the order of keys of json.
Language: Go - Size: 3.91 KB - Last synced at: almost 2 years ago - Pushed at: about 2 years ago - Stars: 1 - Forks: 0

LPX3F8/orderedmap
🧑💻 Implementation of ordered map in golang. Fast, thread-safe and generic support
Language: Go - Size: 31.3 KB - Last synced at: 10 months ago - Pushed at: over 2 years ago - Stars: 1 - Forks: 0

nikitaksv/dynjson
Parsing JSON to dynamic json structure with sorted fields
Language: Go - Size: 21.5 KB - Last synced at: over 1 year ago - Pushed at: about 3 years ago - Stars: 1 - Forks: 1

mansi-k/ADSA_Assignment2
Implemented AVL tree as well as ordered and unordered hashmaps from scratch
Language: C++ - Size: 42 KB - Last synced at: 8 days ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 0

sanyathisside/Hashing
Hashing Data Structure.
Language: C++ - Size: 2.46 MB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 1

millerlogic/orderedmap
Go ordered map
Language: Go - Size: 3.91 KB - Last synced at: 10 months ago - Pushed at: almost 7 years ago - Stars: 1 - Forks: 0

fgm/container
Type-safe implementations of OrderedMap, Queue, Set and Stack using Go generics
Language: Go - Size: 111 KB - Last synced at: 1 day ago - Pushed at: 1 day ago - Stars: 0 - Forks: 2

Superb-Man/Advanced_DSA
Some of my leisure activities.
Language: C++ - Size: 70.3 KB - Last synced at: about 2 months ago - Pushed at: 8 months ago - Stars: 0 - Forks: 0

lorenzosaino/go-orderedmap
Go implementation of an ordered map using generics
Language: Go - Size: 1.26 MB - Last synced at: 25 days ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

cornelk/orderedmap
A Golang Map that keeps track of the insert order of items.
Language: Go - Size: 10.7 KB - Last synced at: 27 days ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

matheusoliveira/go-ordered-map
Optimal ordered map and multi-map implementations in Golang, with optional sync support and multiple implementations of same interfaces
Language: Go - Size: 109 KB - Last synced at: 10 months ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

somyalalwani/Ordered-Map
Implemented an Ordered Map in C++ without using any inbuilt data structure.
Language: C++ - Size: 49.8 KB - Last synced at: about 2 years ago - Pushed at: almost 4 years ago - Stars: 0 - Forks: 0

fredwangwang/orderedmap Fork of cevaris/ordered_map
Python port of OrderedDict to Go
Language: Go - Size: 1.36 MB - Last synced at: about 1 month ago - Pushed at: almost 7 years ago - Stars: 0 - Forks: 0
