最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Why does sort() with key function not do anything while sorted() is working? - Stack Overflow

programmeradmin3浏览0评论

I have a list of integers with duplicates and I need to sort it by the number of these duplicates.

For example:

input: n = [2, 4, 1, 2]
output: n = [4, 1, 2, 2]

I wrote some code and noticed, that sort() does not change the list. But if I try to use sorted() with the same key argument, then it works just fine. What is the reason behind this?

My code:

nums = [2, 4, 1, 2]
nums.sort(key = lambda x: nums.count(x))
print(nums)

Can it be connected to sort() method using in-place algorithm?

I have a list of integers with duplicates and I need to sort it by the number of these duplicates.

For example:

input: n = [2, 4, 1, 2]
output: n = [4, 1, 2, 2]

I wrote some code and noticed, that sort() does not change the list. But if I try to use sorted() with the same key argument, then it works just fine. What is the reason behind this?

My code:

nums = [2, 4, 1, 2]
nums.sort(key = lambda x: nums.count(x))
print(nums)

Can it be connected to sort() method using in-place algorithm?

Share Improve this question edited Apr 2 at 7:23 mkrieger1 23.4k7 gold badges64 silver badges82 bronze badges asked Apr 2 at 3:47 KsuvoKsuvo 434 bronze badges New contributor Ksuvo is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct.
Add a comment  | 

1 Answer 1

Reset to default 5

Unlike sorted, the list.sort method sorts a list in-place, during which time the list is in an interim state where there is no integrity to its internal data structure for the other methods to read from.

Since a key function for the sort method is called during a sort, your calling the count method of the same list in the key function does not actually return the count of a given item as you expect, which you can see with a wrapper function:

def count(x):
    n = nums.count(x)
    print(n)
    return n

nums = [2, 4, 1, 2]
nums.sort(key=count)

the above outputs:

0
0
0
0

which explains why the list remains in the same order since the key for each item turns out to be the same value of 0 and since the sorting algorithm used is a stable one.

The documentation of list.sort also notes:

CPython implementation detail: While a list is being sorted, the effect of attempting to mutate, or even inspect, the list is undefined. The C implementation of Python makes the list appear empty for the duration, and raises ValueError if it can detect that the list has been mutated during a sort.

So CPython's implementation makes the list appear empty during a sort, which explains why list.count returns 0 when called from a key function.

发布评论

评论列表(0)

  1. 暂无评论