[Include] Hash-map implementation in PAWN - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (
https://sampforum.blast.hk/forumdisplay.php?fid=17)
+---- Forum: Includes (
https://sampforum.blast.hk/forumdisplay.php?fid=83)
+---- Thread: [Include] Hash-map implementation in PAWN (
/showthread.php?tid=645194)
Hash-map implementation in PAWN -
BigETI - 22.11.2017
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
Re: Hash-map implementation in PAWN -
CantBeJohn - 21.11.2018
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.
Re: Hash-map implementation in PAWN -
PT - 21.11.2018
Add code examples for more persons understand what is
Nice job
Re: Hash-map implementation in PAWN -
Dayrion - 21.11.2018
This is an implementation of simple linked list in pawn? O:
Re: Hash-map implementation in PAWN -
BigETI - 21.11.2018
A map data structure (binary search tree) is not a linked list.
Re: Hash-map implementation in PAWN -
CantBeJohn - 21.11.2018
Quote:
Originally Posted by PT
Add code examples for more persons understand what is
Nice job
|
If you check the wiki (
https://github.com/BigETI/pawn-map/wiki) there's an example for every function.