在我认为是Python 2的JES中,我该如何做一个嵌套以计数循环来计数代表,直到对列表进行排序为止



我正在使用JES参加初学者编程课程,我相信这是Python 2。我的老师要求我们创建一个空列表,然后向其添加随机数,然后从最低到最高数进行排序。那部分我做得正确。额外的信用是添加一个嵌套的循环,以计算对列表进行排序所需的代表。这就是我所拥有的:

from random import *
def main():
# create list of 25 (this can be changed to number of your choice) random numbers from -100 to 100
# print list with message "list before shuffling"
  numList = []
  count = 0
  while count < 15:
    num = randint( -100 , 100 )
    numList.append(num)
    count = count + 1
  printNow("the List before shuffling:  " +str(numList))
  n = len(numList)
  add = 0
# Randomly shuffle list with items only moving if a lower number is being switched with a larger number
# do this 1000 times ( this can be changed to number of your choice)
# print list with message "list after shuffling"
  for reps in range (0 , 500):
    i = randrange(0, n)
    j = randrange(0, n)
# extra credit, add nested for loop to count number of reps it takes to sort the list    
    for sort in range(0, len(numList)):
      for item in range(sort+1, len(numList)):
        while numList[sort] < numList[item] or add < reps:
          add = add + 1
       
    if i < j:
      if numList[i] > numList[j]:
        temp = numList[i]
        numList[i] = numList[j]            
        numList[j] = temp
    elif j < i:
      if numList[i] < numList[j]:
        temp = numList[j]
        numList[j] = numList[i]
        numList[i] = temp
        
  print(" List was sorted in " + str(add) + " reps.")
  printNow("The List after shuffling:  " +str(numList))

我的老师说我在额外的信用部分中有太多循环。我被卡住了,正在寻找某人解释我在做错什么。我不希望有人为我解决它,但是告诉我我做错了什么。

我不认为这是您将while循环放入两级for循环中的任何理由。使用两个for循环,您应该能够通过列表迭代并使用其他一些有条件检查器(提示:您已经显示了您已显示的此脚本中已经使用过(来确定当前列表元素是否在正确的位置(目前 - 稍后可能会随身携带(。您可以看:

气泡排序

相关内容

  • 没有找到相关文章

最新更新