gpt4 book ai didi

swift - 如何有效地以相反的顺序对对象数组进行排序?

转载 作者:搜寻专家 更新时间:2023-10-30 22:11:31 26 4
gpt4 key购买 nike

假设我有一个字典数组:

[ { "id": 2 }, { "id": 59 }, { "id": 31 } ... ]

如何对其进行排序,使其按“id”降序排列?

我最初的做法是这样的:

Loop through each element, find the biggest one, and put it into a new array. Then, remove that from the element. Repeat.

但我知道这是错误的而且效率不高。

最佳答案

您可以在 Swift 中使用排序功能。像这样:

let arr = [["id": 2], ["id": 59], ["id": 31]]
let sortedArr = arr.sort { Int($0["id"]!) > Int($1["id"]!) }

关于swift - 如何有效地以相反的顺序对对象数组进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36733807/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com