iPhone上使用哪种类型的数据结构来存储这些数据

发布于 2024-11-14 13:32:48 字数 145 浏览 4 评论 0原文

我有一个在数学公式中使用的一些值的数组,我想知道哪个是更好的数据结构(NSArray 或 NSDictionary 或...)使用?谢谢。

在此处输入图像描述

i have an array of some values that i use in a mathematical formula, and i want to know which is the better data structure(NSArray or NSDictionary or ...) to use? Thanks.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

歌入人心 2024-11-21 13:32:48

有什么理由不使用 NS(Mutable)Dictionary (NSNumber/NSString) 作为键/值?

您可以尝试这样的事情:

XYPair:NSObject;
{
NSNumber *xValue;
NSNumber *yValue;
}

让初始化器类似于,
-(id) initWithXValue:(NSNumber*)x YValue:(NSNumber)y;

用法:
XYPair *someEntry = [XYPa​​ir alloc] initWithXValue:[NSNumber numberWithInt:1000] YValue:[NSNumber numberWithInt:0.25]];
NSMutableDictionary *ds = [NSMutableDictionary alloc] initWithObjects:someEntry,@"1",nil];

不要忘记实现 NSCoding(归档所需)、NSCopying(为了有资格成为有效密钥)对于 XYPair

Any reason for not using NS(Mutable)Dictionary (NSNumber/NSString) as key / value?

You can try some thing like this:

XYPair:NSObject<NSCoding,NSCopying>
{
NSNumber *xValue;
NSNumber *yValue;
}

let the initializer be some thing like,
-(id) initWithXValue:(NSNumber*)x YValue:(NSNumber)y;

Usage:
XYPair *someEntry = [XYPair alloc] initWithXValue:[NSNumber numberWithInt:1000] YValue:[NSNumber numberWithInt:0.25]];
NSMutableDictionary *ds = [NSMutableDictionary alloc] initWithObjects:someEntry,@"1",nil];

Dont forget to implement NSCoding (requried for archiving),NSCopying(in order to qualify to be a valid key) for XYPair

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文