GavinPHR / pytreemap

Python Implementation of Java TreeMap/TreeSet (Red-Black Tree)
https://gavinphr.github.io/pytreemap/
GNU General Public License v2.0
13 stars 7 forks source link

Interoperability between dict and TreeMap #2

Closed rafaelsilverioit closed 2 years ago

rafaelsilverioit commented 2 years ago

It would be nice if we had a method to convert the TreeMap to a dict and vice versa or a default json serializer/deserializer. Right now I'm trying to figure out how I'm going to do it for my simple use case.

GavinPHR commented 2 years ago

I guess you can just iterate through the TreeMap and insert each key-value pair into a dictionary, and vice versa?

rafaelsilverioit commented 2 years ago

What a fool I am! Never thought about that. Thank you. haha