(int a, int b)
| 674 | |
| 675 | |
| 676 | public void swap(int a, int b) { |
| 677 | String tkey = keys[a]; |
| 678 | float tvalue = values[a]; |
| 679 | keys[a] = keys[b]; |
| 680 | values[a] = values[b]; |
| 681 | keys[b] = tkey; |
| 682 | values[b] = tvalue; |
| 683 | |
| 684 | // indices.put(keys[a], Integer.valueOf(a)); |
| 685 | // indices.put(keys[b], Integer.valueOf(b)); |
| 686 | } |
| 687 | |
| 688 | |
| 689 | /** |