lanjoni / rust-data-structure

This repository aims to organize codes related to data structures in Rust. 🦀
GNU General Public License v3.0
20 stars 3 forks source link

Feat: Base hashmap implementation #20

Closed J0sueTM closed 1 year ago

J0sueTM commented 1 year ago
J0sueTM commented 1 year ago

@lanjoni I don't think there's a necessity to separate hashmaps from hashtables. They're roughly the same, with minimal differences that are only visible in some language implementations, like Java, where hashtables support null values, while hashmaps doesn't.