Блог пользователя non--stop

Автор non--stop, история, 4 года назад, По-английски

question suggest some approach and reason behind it

  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Prove that it is always optimal to swap any element into its final position.

Think of the array as a permutation, and consider cycles in the permutation. Define $$$f(A)$$$ as the sum of one minus the size of each cycle, where fixed points (elements in their final positions) are not counted. The $$$f$$$ value of a sorted array is $$$0$$$. Prove that any swap decreases $$$f$$$ by at most $$$1$$$, and there's always an operation that decreases $$$f$$$ by $$$1$$$.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

How can you use knowledge of graph theory to easily determine how many swaps it takes to sort each group of elements?

»
4 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Stop posting blogs for questions which're already google-able