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

前端之家收集整理的这篇文章主要介绍了如果它们不是一个接一个地更改,则更改重复列表项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

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]
原文链接:https://www.f2er.com/python/438926.html

猜你在找的Python相关文章