------
## 最终结论
```python
def sort_counter(counter):
    sorted_counter = sorted(counter.items(), key=lambda item: item[1], reverse=True)
    return sorted_counter
```