Objective-C學習筆記_字典、集合、數組排序

來源:互聯網
上載者:User

標籤:objective-c   ios   

  • 一字典類
  • 二集合類
  • 三數組字典集合的快速遍曆
  • 四數組排序
  • 五數組元素按照數值大小排序

一、字典類

字典?於儲存具有映射關係(key-value對)資料的集合。對於“姓名:張三”來講,key就是“姓名”,key對應的value是“張三”。一個key-value對認為是?個條目,字典是儲存key-value對的容器。與數組不同,字典靠key存取元素。key不能重複,value必須是對象。索引值對在字典中是無序儲存的。字典也分為,不可變字典(NSDictionary)和可變字典(NSMutableDictionary)。

NSDictionary,不可變字典,繼承NSObject。即字典一旦建立,索引值對就不可更改,不可添加,不可刪除。僅能讀取key或者value。

        /* 不可變字典 */        /* 建立對象 */        NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:                             @"ZhangSan", @"name",                             @"Man", @"sex",                             @"18", @"age",                             @"130", @"weight",                             nil];        /* 輸出字典 */        NSLog(@"%@", dic);        /* 擷取所有的Key值 */        [dic allKeys];        NSLog(@"%@", [dic allKeys]);        /* 擷取所有的Value值 */        [dic allValues];        NSLog(@"%@", [dic allValues]);        /* 通過Key查詢Value值 */        [dic objectForKey:@"name"];        NSLog(@"%@", [dic objectForKey:@"name"]);        [dic valueForKey:@"name"];        NSLog(@"%@", [dic valueForKey:@"name"]);        /* 遍曆字典 */        NSArray *keyArr = [dic allKeys];        for (int i = 0; i < keyArr.count; i++) {            NSString *keyStr = [keyArr objectAtIndex:i];            NSLog(@"%@", [dic objectForKey:keyStr]);        }        /* 快速遍曆 */        for (NSString *key in dic) {            NSLog(@"%@", [dic objectForKey:key]);        }        /* keyArr快速遍曆 */        for (NSString *str in keyArr) {            NSLog(@"%@", str);        }

NSMutableDictionary,可變字典,繼承NSDictionary。可以對管理的索引值對進?行增、刪、改。

        /* 可變字典 */        NSMutableDictionary *mDic = [NSMutableDictionary dictionaryWithObjectsAndKeys:                                     @"LiSi", @"name",                                     @"18", @"age",                                     @"woman", @"sex",                                     @"120", @"weight",                                     nil];        for (NSString *key in mDic) {            NSLog(@"%@", [mDic objectForKey:key]);        }        /* 增加索引值對 */        [mDic setObject:@"170cm" forKey:@"height"];        [mDic setValue:@"volleyball" forKey:@"hobby"];        for (NSString *key in mDic) {            NSLog(@"%@", [mDic objectForKey:key]);        }        /* 修改索引值對 */        [mDic setObject:@"20" forKey:@"age"];        for (NSString *key in mDic) {            NSLog(@"%@", [mDic objectForKey:key]);        }        /* 刪除索引值對 */        [mDic removeObjectForKey:@"hobby"];        for (NSString *key in mDic) {            NSLog(@"%@", [mDic objectForKey:key]);        }
二、集合類

集合類*NSSet,類似數學中集合的概念,具有確定性、無序性、互異性*。即集合中儲存的元素必須是物件類型,儲存的元素是無順序的,儲存的元素唯一。集合類也分為NSSet和NSMutableSet。

NSSet的範例程式碼如下:

        /* 不可變Set */        /* 建立 */        NSSet *set = [NSSet setWithObjects:@"四平", @"長春", @"吉林", @"四平", nil];        /* 擷取Set元素個數 */        NSLog(@"%lu", set.count);        /* 擷取Set中某一元素 */        NSLog(@"%@", [set anyObject]);        /* 判斷Set中是否包含某一個對象 */        if ([set containsObject:@"瀋陽"]) {            NSLog(@"有");        }        else {            NSLog(@"無");        }        /* 遍曆集合 */        for (NSString *str in set) {            NSLog(@"%@", str);        }

NSMutableSet的範例程式碼如下:

        /* 可變集合 */        NSSet *set2 = [NSSet setWithObjects:@"DaLian", @"BeiJing", nil];        NSMutableSet *mSet = [NSMutableSet setWithSet:set2];        /* 合并兩個集合 */        [mSet unionSet:set];        for (NSString *str in mSet) {            NSLog(@"%@", str);        }        /* 相交兩個集合 */        [mSet intersectSet:set];        /* 添加元素 */        [mSet addObject:@"通化"];        /* 刪除元素 */        [mSet removeObject:@"BeiJing"];        for (NSString *str in mSet) {            NSLog(@"*%@*", str);        }        

NSCountedSet是NSMutableSet的子類,能記錄元素的重複次數。在NSSet的基礎上添加了計數功能。

NSCountedSet的範例程式碼如下:

        /* NSCountedSet類 */        NSArray *arr = [NSArray arrayWithObjects:@"Zhang", @"LiSi", @"LiSi", @"Wang", @"Wang", @"LiSi", nil];        NSCountedSet *countSet = [NSCountedSet setWithArray:arr];        /* 查看countSet元素個數 */        NSLog(@"%lu", countSet.count);        /* LiSi計數 */        NSLog(@"%lu", [countSet countForObject:@"LiSi"]);
三、數組、字典、集合的快速遍曆
for (<#type *object#> in <#collection#>) {}
  1. object是遍曆得到的元素對象。
  2. collection是集合類型的對象:數組、字典、集合。

集合類型枚舉的特點

  • 數組枚舉得到數組中的元素對象
  • 字典枚舉得到字典中的key值
  • 集合枚舉得到集合中的元素對象
        NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:                             @"ZhangSan", @"name",                             @"Man", @"sex",                             @"18", @"age",                             @"130", @"weight",                             nil];                             /* 快速遍曆 */        for (NSString *key in dic) {            NSLog(@"%@", [dic objectForKey:key]);        }
四、數組排序

數組排序取決於判斷條件,判斷條件決定了排序的?式(升序、降序)。iOS為數組提供了排序?法,同時提供了介面讓我們傳遞判斷條件。

        NSMutableArray *mArr = [NSMutableArray arrayWithObjects:@"3", @"2", @"1", @"4", nil];        /* 可變數組排序 */        /* @selector --> 方法選取器, 擷取方法名的意思.         * compare: --> 數組中元素的方法(元素是字串, compare是字串的一個方法)         */        [mArr sortUsingSelector:@selector(compare:)];        NSLog(@"%@", mArr);        /* 不可變數組排序 */        NSArray *arr = [NSArray arrayWithObjects:@"4", @"2", @"1", @"3", nil];        NSArray *sortArr = [arr sortedArrayUsingSelector:@selector(compare:)];        NSLog(@"%@", sortArr);
五、數組元素按照數值大小排序

數組中儲存的元素是物件類型,如果儲存的元素都是數值對象,按照上述方法排序就不能得到正確的結果。因此,需要使用NSNumberFormatter將字串轉化為NSNumber對象。具體實現代碼如下:

#pragma mark - 數值數組排序#if 1        NSArray *arr = @[@"1", @"12", @"122", @"67", @"50", @"666"];        NSMutableArray *numArr = [NSMutableArray array];        for (NSString *string in arr) {            //  NSNumberFormatter格式轉化            NSNumberFormatter *format = [[NSNumberFormatter alloc] init];            //  NSString 轉成 NSNumber            NSNumber *num = [format numberFromString:string];            [numArr addObject:num];        }        //  根據數組裡元素的類型來調用相應的方法, 相當於排序中條件判斷        NSLog(@"%@", [numArr sortedArrayUsingSelector:@selector(compare:)]);#endif

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

Objective-C學習筆記_字典、集合、數組排序

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.