82

我有一个 NSDictionary(存储在 plist 中),我基本上将其用作关联数组(字符串作为键和值)。我想将键数组用作我的应用程序的一部分,但我希望它们按特定顺序排列(不是我可以编写算法将它们排序的顺序)。我总是可以存储一个单独的键数组,但这似乎有点笨拙,因为我总是必须更新字典的键以及数组的值,并确保它们始终对应。目前我只使用 [myDictionary allKeys],但显然这会以任意、无保证的顺序返回它们。Objective-C 中是否有我缺少的数据结构?有人对如何更优雅地做到这一点有任何建议吗?

4

9 回答 9

23

拥有关联的 NSMutableArray 键的解决方案还不错。它避免了子类化 NSDictionary,如果你在编写访问器时很小心,保持同步应该不会太难。

于 2008-12-17T22:19:55.613 回答
20

我的实际答案迟到了,但您可能有兴趣调查CHOrderedDictionary。它是 NSMutableDictionary 的子类,它封装了另一种用于维护键顺序的结构。(它是CHDataStructures.framework的一部分。)我发现它比单独管理字典和数组更方便。

披露:这是我编写的开源代码。只是希望它可能对面临这个问题的其他人有用。

于 2010-10-18T19:04:28.770 回答
14

没有这样的内置方法可以从中获取。但是一个简单的逻辑对你有用。准备字典时,您可以在每个键前简单地添加一些数字文本。喜欢

NSDictionary *dict = [[NSDictionary alloc] initWithObjectsAndKeys:
                       @"01.Created",@"cre",
                       @"02.Being Assigned",@"bea",
                       @"03.Rejected",@"rej",
                       @"04.Assigned",@"ass",
                       @"05.Scheduled",@"sch",
                       @"06.En Route",@"inr",
                       @"07.On Job Site",@"ojs",
                       @"08.In Progress",@"inp",
                       @"09.On Hold",@"onh",
                       @"10.Completed",@"com",
                       @"11.Closed",@"clo",
                       @"12.Cancelled", @"can",
                       nil]; 

现在,如果您可以使用sortingArrayUsingSelector,同时按照您放置的顺序获取所有键。

NSArray *arr =  [[dict allKeys] sortedArrayUsingSelector:@selector(localizedStandardCompare:)];

在UIView中要显示key的地方,把前面的3个字符剪掉即可。

于 2013-02-22T09:14:17.633 回答
7

如果你打算继承 NSDictionary 的子类,你至少需要实现这些方法:

  • NS词典
    • -count
    • -objectForKey:
    • -keyEnumerator
  • NSMutableDictionary
    • -removeObjectForKey:
    • -setObject:forKey:
  • NSCopying/NSMutableCopying
    • -copyWithZone:
    • -mutableCopyWithZone:
  • NS编码
    • -encodeWithCoder:
    • -initWithCoder:
  • NSFastEnumeration (用于 Leopard)
    • -countByEnumeratingWithState:objects:count:

做你想做的最简单的方法是创建一个 NSMutableDictionary 的子类,其中包含它自己操作的 NSMutableDictionary 和一个 NSMutableArray 来存储一组有序的键。

如果你永远不会编码你的对象,你可以想象跳过实现-encodeWithCoder:-initWithCoder:

然后,上述 10 种方法中的所有方法实现都将直接通过托管字典或有序键数组。

于 2008-12-18T04:40:22.163 回答
5

我的小补充:按数字键排序(对较小的代码使用速记符号)

// the resorted result array
NSMutableArray *result = [NSMutableArray new];
// the source dictionary - keys may be Ux timestamps (as integer, wrapped in NSNumber)
NSDictionary *dict =
@{
  @0: @"a",
  @3: @"d",
  @1: @"b",
  @2: @"c"
};

{// do the sorting to result
    NSArray *arr = [[dict allKeys] sortedArrayUsingSelector:@selector(compare:)];

    for (NSNumber *n in arr)
        [result addObject:dict[n]];
}
于 2014-03-20T13:58:12.783 回答
3

快速'n脏:

当您需要订购词典(此处称为“myDict”)时,请执行以下操作:

     NSArray *ordering = [NSArray arrayWithObjects: @"Thing",@"OtherThing",@"Last Thing",nil];

然后,当您需要订购字典时,创建一个索引:

    NSEnumerator *sectEnum = [ordering objectEnumerator];
    NSMutableArray *index = [[NSMutableArray alloc] init];
        id sKey;
        while((sKey = [sectEnum nextObject])) {
            if ([myDict objectForKey:sKey] != nil ) {
                [index addObject:sKey];
            }
        }

现在,*index 对象将以正确的顺序包含适当的键。请注意,此解决方案并不要求所有密钥都必须存在,这是我们正在处理的通常情况......

于 2009-08-13T03:47:50.883 回答
3

NSDictionary 的有序子类的最小实现(基于https://github.com/nicklockwood/OrderedDictionary)。随意扩展您的需求:

斯威夫特 3 和 4

class MutableOrderedDictionary: NSDictionary {
    let _values: NSMutableArray = []
    let _keys: NSMutableOrderedSet = []

    override var count: Int {
        return _keys.count
    }
    override func keyEnumerator() -> NSEnumerator {
        return _keys.objectEnumerator()
    }
    override func object(forKey aKey: Any) -> Any? {
        let index = _keys.index(of: aKey)
        if index != NSNotFound {
            return _values[index]
        }
        return nil
    }
    func setObject(_ anObject: Any, forKey aKey: String) {
        let index = _keys.index(of: aKey)
        if index != NSNotFound {
            _values[index] = anObject
        } else {
            _keys.add(aKey)
            _values.add(anObject)
        }
    }
}

用法

let normalDic = ["hello": "world", "foo": "bar"]
// initializing empty ordered dictionary
let orderedDic = MutableOrderedDictionary()
// copying normalDic in orderedDic after a sort
normalDic.sorted { $0.0.compare($1.0) == .orderedAscending }
         .forEach { orderedDic.setObject($0.value, forKey: $0.key) }
// from now, looping on orderedDic will be done in the alphabetical order of the keys
orderedDic.forEach { print($0) }

Objective-C

@interface MutableOrderedDictionary<__covariant KeyType, __covariant ObjectType> : NSDictionary<KeyType, ObjectType>
@end
@implementation MutableOrderedDictionary
{
    @protected
    NSMutableArray *_values;
    NSMutableOrderedSet *_keys;
}

- (instancetype)init
{
    if ((self = [super init]))
    {
        _values = NSMutableArray.new;
        _keys = NSMutableOrderedSet.new;
    }
    return self;
}

- (NSUInteger)count
{
    return _keys.count;
}

- (NSEnumerator *)keyEnumerator
{
    return _keys.objectEnumerator;
}

- (id)objectForKey:(id)key
{
    NSUInteger index = [_keys indexOfObject:key];
    if (index != NSNotFound)
    {
        return _values[index];
    }
    return nil;
}

- (void)setObject:(id)object forKey:(id)key
{
    NSUInteger index = [_keys indexOfObject:key];
    if (index != NSNotFound)
    {
        _values[index] = object;
    }
    else
    {
        [_keys addObject:key];
        [_values addObject:object];
    }
}
@end

用法

NSDictionary *normalDic = @{@"hello": @"world", @"foo": @"bar"};
// initializing empty ordered dictionary
MutableOrderedDictionary *orderedDic = MutableOrderedDictionary.new;
// copying normalDic in orderedDic after a sort
for (id key in [normalDic.allKeys sortedArrayUsingSelector:@selector(compare:)]) {
    [orderedDic setObject:normalDic[key] forKey:key];
}
// from now, looping on orderedDic will be done in the alphabetical order of the keys
for (id key in orderedDic) {
    NSLog(@"%@:%@", key, orderedDic[key]);
}
于 2017-09-06T14:15:09.597 回答
2

对于,斯威夫特 3。请尝试以下方法

        //Sample Dictionary
        let dict: [String: String] = ["01.One": "One",
                                      "02.Two": "Two",
                                      "03.Three": "Three",
                                      "04.Four": "Four",
                                      "05.Five": "Five",
                                      "06.Six": "Six",
                                      "07.Seven": "Seven",
                                      "08.Eight": "Eight",
                                      "09.Nine": "Nine",
                                      "10.Ten": "Ten"
                                     ]

        //Print the all keys of dictionary
        print(dict.keys)

        //Sort the dictionary keys array in ascending order
        let sortedKeys = dict.keys.sorted { $0.localizedCaseInsensitiveCompare($1) == ComparisonResult.orderedAscending }

        //Print the ordered dictionary keys
        print(sortedKeys)

        //Get the first ordered key
        var firstSortedKeyOfDictionary = sortedKeys[0]

        // Get range of all characters past the first 3.
        let c = firstSortedKeyOfDictionary.characters
        let range = c.index(c.startIndex, offsetBy: 3)..<c.endIndex

        // Get the dictionary key by removing first 3 chars
        let firstKey = firstSortedKeyOfDictionary[range]

        //Print the first key
        print(firstKey)
于 2016-10-19T12:25:28.977 回答
0

我不太喜欢 C++,但我发现自己越来越多地使用的一种解决方案是使用 Objective-C++ 和std::map标准模板库。它是一个字典,其键在插入时自动排序。无论是作为键还是作为值,标量类型或 Objective-C 对象都可以很好地工作。

如果您需要包含一个数组作为值,只需使用std::vector而不是NSArray.

一个警告是,您可能想要提供自己的insert_or_assign函数,除非您可以使用 C++17(请参阅此答案)。此外,您需要使用typedef您的类型来防止某些构建错误。一旦你弄清楚如何使用std::map,迭代器等,它就非常简单快速。

于 2017-08-25T13:45:28.500 回答