>  기사  >  백엔드 개발  >  효율적인 기술을 사용하여 목록을 균형 잡힌 부분으로 어떻게 분할할 수 있습니까?

효율적인 기술을 사용하여 목록을 균형 잡힌 부분으로 어떻게 분할할 수 있습니까?

DDD
DDD원래의
2024-11-15 12:23:02443검색

How Can I Split a List into Balanced Parts with an Efficient Technique?

Balancing List Distribution with an Efficient Splitting Technique

In the realm of data manipulation, the ability to evenly distribute a list into multiple parts of desired lengths holds significant importance. This challenge arises in various scenarios, such as when partitioning data for concurrent processing or organizing items into manageable subsets.

One commonly employed approach is the chunks() function, which divides a list into chunks of a specified size. However, this method lacks the precision to create roughly equal parts in all cases. For instance, when splitting a list of 7 elements into 2 parts, it would result in uneven chunks of 3 and 4 elements.

To address this limitation, a more refined solution is presented:

def split(a, n):
    k, m = divmod(len(a), n)
    return (a[i*k+min(i, m):(i+1)*k+min(i+1, m)] for i in range(n))

This approach employs the divmod() function to calculate the number of complete chunks of size k and the number of elements in the remaining partial chunk m. Subsequently, the loop iterates through each chunk, starting from index i, and slices the list to retrieve the desired subset.

As an illustration, consider the following example:

>>> list(split(range(11), 3))
[[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10]]

In this scenario, the list [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] is elegantly split into three nearly equal parts, with each chunk containing either 4 or 3 elements.

By incorporating this technique into your programming arsenal, you will gain a powerful tool for managing lists in an efficient and balanced manner.

위 내용은 효율적인 기술을 사용하여 목록을 균형 잡힌 부분으로 어떻게 분할할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.