`

swift -> Swift排序Sort函数用法

 
阅读更多

转自 :  http://blog.csdn.net/li962429707/article/details/46885773

 

用了几分钟做的简单翻译

一个例子

直接贴代码,不过多解释

//这是我们的model

class imageFile  {

    var fileName = String()

    var fileID = Int()

}

 

 

//使用

var images : [imageFile] = []

images.sort({ $0.fileID > $1.fileID })

 

swift 3 :

returns.sort(by: {$0.frq > $1.frq})

  

 

 

 

下面是闭包的进阶使用

 

//一般的代码形式

images.sort({ (image1: imageFile, image2: imageFile) -> Bool inreturn image1.fileID > image2.fileID })

 

// 省略(->)的形式

images.sort({ image1, image2 inreturn image1.fileID > image2.fileID })

 

// 带返回值的简单闭包形式

images.sort({ image1, image2 in image1.fileID > image2.fileID })

 

// 隐含参数的形式

images.sort({ $0.fileID > $1.fileID })

 

// 以下结果都是相同,只是书写形式不同

images = images.sorted({ (image1: imageFile, image2: imageFile) -> Bool inreturn image1.fileID > image2.fileID })

images = images.sorted({ image1, image2 inreturn image1.fileID > image2.fileID })

images = images.sorted({ image1, image2 in image1.fileID > image2.fileID })

images = images.sorted({ $0.fileID > $1.fileID })

sd

 

//swift标准库

sort(&images, { (image1: imageFile, image2: imageFile) -> Bool inreturn image1.fileID > image2.fileID })

sort(&images, { image1, image2 inreturn image1.fileID > image2.fileID })

sort(&images, { image1, image2 in image1.fileID > image2.fileID })

sort(&images, { $0.fileID > $1.fileID })

 

//使用方法

images = sorted(images, { (image1: imageFile, image2: imageFile) -> Bool inreturn image1.fileID > image2.fileID })

images = sorted(images, { image1, image2 inreturn image1.fileID > image2.fileID })

images = sorted(images, { image1, image2 in image1.fileID > image2.fileID })

 

images = sorted(images, { $0.fileID > $1.fileID })

分享到:
评论

相关推荐

    Swift--AZ-Sort.zip

    1. **内置排序函数**:Swift的标准库提供了`sort()`函数,可以对数组元素按照默认的排序规则或自定义规则进行排序。例如,对于字符串数组,它会按照字典顺序(即A到Z)排序。 ```swift let names = ["Charlie", ...

    swift-iOS中Block的用法举例解析与底层原理

    1. 数组排序:Swift中的`sort()`方法就使用了Block来定义排序规则: ```swift let numbers = [5, 2, 8, 1, 9] numbers.sort(by: { $0 $1 }) // 将数组按升序排列 ``` 2. 异步操作:在网络请求或其他异步操作中,...

    swift-中文排序

    1. **Unicode排序**:Swift的`Array`或`Sort`函数默认按照Unicode编码顺序进行排序,这在处理中文时可能导致问题,因为汉字的Unicode值并不完全反映其字典顺序。 2. **自定义排序闭包**:为了实现正确的中文排序,...

    swift-ios排序方法对比

    本篇文章将深入探讨在iOS开发中如何使用Swift进行排序,并通过比较不同方法,帮助开发者更好地理解并选择合适的排序算法。 首先,我们来看Swift中最基础的排序方法——`sorted()`函数。它可以直接应用于数组(Array...

    swift-iOS开发·必会的算法操作字符串数组排序模型对象数组排序

    在Swift中,我们可以通过内置的`sort()`函数对字符串数组进行排序。这个函数可以按照字母顺序或自定义规则对数组元素进行升序或降序排列。以下是一些基本用法: 1. **升序排序**: ```swift var stringArray = [...

    swift-SwiftSortedList-一个采用Swift编写的可排序列表实现

    1. **动态排序**:不同于Array的静态排序(sort()函数),SwiftSortedList在插入元素时会自动保持列表的排序状态。这意味着你可以随时添加新元素,并始终保证列表是有序的。 2. **性能优化**:SwiftSortedList的...

    swift-LeetCodeSwift用Swift代码解决LeetCode上算法问题

    比如,使用闭包进行排序(sort(by:))或者在迭代中执行特定操作。 此外,Swift的Optionals使得处理可能存在的null值变得安全,而它的错误处理机制也让异常处理更加明确。这些特性在编写复杂的算法和避免运行时错误...

    swift-SwiftStructures-Swift中常用的数据结构和算法的示例

    - **排序算法**:Swift提供了快速排序(quicksort)和归并排序(mergesort)等内置排序算法,但也可以自定义排序函数,如插入排序(insertion sort)、冒泡排序(bubble sort)等。 - **查找算法**:线性查找...

    函数式编程swift4.0

    Swift中,`map`、`filter`、`reduce`和`sort`都是高阶函数。例如,`map`函数可以对数组中的每个元素应用一个函数并返回一个新的数组。 ```swift let numbers = [1, 2, 3, 4] let squaredNumbers = numbers.map { $0 ...

    Pro Swift-Break out of beginner’s Swift with this hands-on guide

    - **排序**(`sort()`):按指定顺序排列集合中的元素。 - **函数组合**(Function Composition):将多个函数组合成单个函数的过程。 - **惰性函数**(Lazy Functions):只有在真正需要时才计算其结果的函数。 - *...

    swift-SKUFilter电商StockKeepingUnit选择过滤器示例

    这可能涉及到Array、Dictionary等数据结构,以及filter()、sort()等函数的使用。 4. **Delegate与DataSource**:在iOS开发中,UITableView和UICollectionView通过遵循UITableViewDataSource和UITableViewDelegate...

    Swift常用算法代码集合

    func insertionSort(_ array: [Int]) -> [Int] { for i in 1.. let key = array[i] var j = i - 1 while j >= 0 && array[j] > key { array[j + 1] = array[j] j -= 1 } array[j + 1] = key } return ...

    C,C++,SWIFT,C#,Objective-C 代码快速排序demo.zip

    func partition<T: Comparable>(_ array: inout [T], around pivotIndex: Int) -> Int { // ... } let numbers = [5, 2, 8, 4, 7] quickSort(&numbers) print(numbers) ``` 4. C#实现: 在C#中,我们可以利用`...

    swift-WLJSearchTableView快速添加输入框下拉显示关联搜索关键词

    例如,你可以使用Swift的`filter`和`sort`函数来实现基于关键词的过滤和排序。 4. **自定义样式** `WLJSearchTableView`允许开发者自定义搜索框和列表的外观。你可以调整输入框的边框颜色、字体大小、列表背景色等...

    Swift从入门到精通视频教程下载第10章 程序功能的核心——函数和闭包.zip

    在这里,`addNumbers`是函数名,`_ num1: Int`和`_ num2: Int`是输入参数,`-> Int`表示函数返回一个整数。调用这个函数时,你只需提供两个整数,如`addNumbers(3, 5)`,结果会是8。 函数还可以有默认参数值,这样...

    Design Patterns by Tutorials (Swift 4.2)

    Swift中,可以使用函数或闭包作为策略。 ```swift protocol SortingStrategy { func sort(items: [Int]) -> [Int] } func bubbleSort(_ items: [Int]) -> [Int] { // 冒泡排序实现... } func quickSort(_ items...

    Swift 中闭包的简单使用

    1. 数组排序:你可以提供一个闭包作为`sort()`方法的参数,自定义元素的比较规则。 2. 函数参数:许多函数接受闭包作为参数,让你能够定制某些行为,如`map()`、`filter()`和`reduce()`等。 3. 回调处理:在异步操作...

    Swift by Tutorials

    - 排序算法在 Swift 中可以通过内置的排序方法如 `sort()` 来实现。 - 用户也可以定义自定义的排序逻辑。 **泛型** - **泛型的基本概念** - 泛型使得代码更加灵活和可重用。 - 它们可以在不指定具体类型的情况...

    study-swift-algorithm:대비:pencil:스트

    1. **排序算法**:Swift标准库提供了`sort()`函数用于数组排序,但理解不同的排序算法(如冒泡排序、快速排序、归并排序)有助于优化性能。例如,快速排序在平均情况下具有较好的时间复杂度。 2. **搜索算法**:...

    冒泡排序优化算法

    2. **排序函数定义**:`bubble_sort`函数接收三个参数:待排序的数组指针、数组长度以及一个比较函数指针。排序过程中使用了一个布尔变量`flag`来标记数组是否已经排序完毕。 ```cpp void bubble_sort(type *arry...

Global site tag (gtag.js) - Google Analytics