如果它们不是一个接一个地更改,则更改重复列表项

我有一个重复的整数列表.例:

37 1 30 38 5 39 5 5 5 40 33 5 35 42 25 36 27 27 43 27

我需要将重复的数字更改为其他数字,如果它们不是一个接一个地去.新数字不应与列表中的其他数字重复.例如,上面的列表应该是这样的:

37 1 30 38 5 39 8 8 8 40 33 2 35 42 25 36 27 27 43 55

这就是我得到的:

a = [37,1,30,38,5,39,40,33,35,42,25,36,27,43,27]

duplicates = list(item for item,count in Counter(a).items() if count > 1)


for dup in duplicates:
    positions = []

    for item in range(len(a)):
        if a[item] == dup:
            positions.append(item)

    for x in range(len(positions)-1):
        if positions[x+1] - positions[x] != 1:
            ran = random.randrange(1,len(a))
            while ran in a:
                ran = random.randrange(1,len(a))
            a[positions[x+1]] = ran
        else:
            y = x
            while positions[y+1] - positions[y] == 1:
                a[positions[y+1]] = a[positions[y]]
                y += 1

[37,5,17,13,27,
43,8]

但我不认为这是一个很好的解决方案.

最佳答案
您可以使用itertools.groupby以相同数字的块处理列表,使用itertools.count生成表达式以生成替换数字:

input_list = [37,27]

import itertools

# make a generator that yields unused numbers
input_values = set(input_list)
unused_number = (num for num in itertools.count() if num not in input_values)

# loop over the input,grouping repeated numbers,and keeping track
# of numbers we've already seen
result = []
seen = set()
for value,group in itertools.groupby(input_list):
    # if this number has occurred already,pick a new number
    if value in seen:
        value = next(unused_number)

    # remember that we've seen this number already so future
    # occurrences will be replaced
    seen.add(value)

    # for each repeated number in this group,add the number
    # to the output one more time
    for _ in group:
        result.append(value)

print(result)
# output:
# [37,2,3]

相关文章

Python中的函数(二) 在上一篇文章中提到了Python中函数的定...
Python中的字符串 可能大多数人在学习C语言的时候,最先接触...
Python 面向对象编程(一) 虽然Python是解释性语言,但是它...
Python面向对象编程(二) 在前面一篇文章中谈到了类的基本定...
Python中的函数(一) 接触过C语言的朋友对函数这个词肯定非...
在windows下如何快速搭建web.py开发框架 用Python进行web开发...