Posts: 1,046
Threads: 29
Joined: Mar 2010
Hash-map implementation in PAWN
Description
This is a map data structure implementation in PAWN using binary search tree.
Project
The source code and documentation are located at GitHub: https://github.com/BigETI/pawn-map
Posts: 107
Threads: 2
Joined: Oct 2016
Reputation:
0
I've been using this for a while now and found it quite useful. Never noticed how this seemingly got no attention (despite the fact I'm sure I'm not the only one who has put this to use) and figured I'd bump it in case someone was looking for something like this and might have missed it.
Anyways, thanks.
Posts: 7,185
Threads: 5
Joined: Nov 2012
Reputation:
0
Add code examples for more persons understand what is
Nice job
Posts: 1,915
Threads: 64
Joined: Jan 2016
Reputation:
0
This is an implementation of simple linked list in pawn? O:
Posts: 1,046
Threads: 29
Joined: Mar 2010
A map data structure (binary search tree) is not a linked list.