I'm trying to sort Dictionary using buble sort. The problem i have is that i want to keep keys. For example:
I have dictionary looks like this:
{[0,5],[1,2],[2,3],[3,1],[4,9]}
After using Bubble Sort on it i should have Dictionary like this:
{[3,1],[1,2],[2,3],[0,5],[4,9]}
Is that even possible ?