由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问个土问题:什么是satellite data?
相关主题
问个jquery处理字符串的问题 (转载)用c怎么实现generic stack (转载)
C++菜鸟问题请教: class versus structure.C 里面有办法永久改变一个指针的属性吗?
烤树题。请教改numpy array的dtype
高手看看,这个define是用来干什么的?我的matlab 抽风了。。。。
一道面试题重新问个小白问题。
ask a question about struct in C programming问个 C++到C的问题
定义的struct数组很大时,为什么会出现奇怪的大数字?问个时钟的问题
面题:copy directed graph问个GSL的问题
相关话题的讨论汇总
话题: data话题: satellite话题: structure话题: because话题: computed
进入Programming版参与讨论
1 (共1页)
t**********s
发帖数: 930
1
Background 是这样:
In a C program, you have a data structure with satellite data defined as
follows:
struct my_data {
float height;
char *name;
double computed value;
};
Because this is satellite data, you must access it through some other data
structure. (That is, you don't have an array of just these satellite data.)
......
q********c
发帖数: 1774
2

)
recall hash table?

【在 t**********s 的大作中提到】
: Background 是这样:
: In a C program, you have a data structure with satellite data defined as
: follows:
: struct my_data {
: float height;
: char *name;
: double computed value;
: };
: Because this is satellite data, you must access it through some other data
: structure. (That is, you don't have an array of just these satellite data.)

t**********s
发帖数: 930
3
不明白

【在 q********c 的大作中提到】
:
: )
: recall hash table?

S*****n
发帖数: 227
4
字面上看,应该在说什么卫星数据吧。

)

【在 t**********s 的大作中提到】
: Background 是这样:
: In a C program, you have a data structure with satellite data defined as
: follows:
: struct my_data {
: float height;
: char *name;
: double computed value;
: };
: Because this is satellite data, you must access it through some other data
: structure. (That is, you don't have an array of just these satellite data.)

t**********s
发帖数: 930
5
字面意思我懂,但还是不清楚到底说什么,这样吧,把原问题贴全:
In a C program, you have a data structure with satellite data defined as
follows:
struct my_data {
float height;
char *name;
double computed value;
};
Because this is satellite data, you must access it through some other data
structure. (That is, you don't have an array of just these satellite data.)
Your most convenient access is through iterator functions: you can call
first() to get a pointer to the first my_data structure and next()

【在 S*****n 的大作中提到】
: 字面上看,应该在说什么卫星数据吧。
:
: )

S*****n
发帖数: 227
6
看起来是让你设计算法,分析复杂性。没什么特别的地方啊。

)

【在 t**********s 的大作中提到】
: 字面意思我懂,但还是不清楚到底说什么,这样吧,把原问题贴全:
: In a C program, you have a data structure with satellite data defined as
: follows:
: struct my_data {
: float height;
: char *name;
: double computed value;
: };
: Because this is satellite data, you must access it through some other data
: structure. (That is, you don't have an array of just these satellite data.)

c*****t
发帖数: 1879
7
把 statellite 这个字忽略了看。在这里没什么重要的意思。

)

【在 t**********s 的大作中提到】
: 字面意思我懂,但还是不清楚到底说什么,这样吧,把原问题贴全:
: In a C program, you have a data structure with satellite data defined as
: follows:
: struct my_data {
: float height;
: char *name;
: double computed value;
: };
: Because this is satellite data, you must access it through some other data
: structure. (That is, you don't have an array of just these satellite data.)

1 (共1页)
进入Programming版参与讨论
相关主题
问个GSL的问题一道面试题
[合集] 问个多线程的问题ask a question about struct in C programming
问个c++的template的问题定义的struct数组很大时,为什么会出现奇怪的大数字?
问个编程,系统,网络有关的综合问题。面题:copy directed graph
问个jquery处理字符串的问题 (转载)用c怎么实现generic stack (转载)
C++菜鸟问题请教: class versus structure.C 里面有办法永久改变一个指针的属性吗?
烤树题。请教改numpy array的dtype
高手看看,这个define是用来干什么的?我的matlab 抽风了。。。。
相关话题的讨论汇总
话题: data话题: satellite话题: structure话题: because话题: computed