快速排序无限循环

时间:2020-04-29 14:24:23

标签: python-3.x algorithm sorting

首先,我要感谢您。 我尝试在python3中编写一个快速排序,但是它无限重复出现。
这是我的代码:

const lookUpCard = e => {
  const index = alphabet.indexOf(e.key)
  const myCard = cards[index]
})

window.addEventListener("keypress", lookUpCard)

1 个答案:

答案 0 :(得分:0)

在递归算法中,您应注意算法的初始步骤。例如,在您的情况下,您需要手动排序给定的数组,而没有任何递归,大小为2。