-1

我不知道该怎么说,所以请耐心等待,如果我能澄清任何事情,请告诉我。我有一个表示为结构的节点链接列表,其中每个节点具有以下内容:类型、描述、数量

我需要打印出所有独特的“类型”。如果多个节点共享一个类型,我只打印一次该类型。

提前致谢!

4

2 回答 2

1

尝试实现一个集合。然后迭代列表,将类型添加到该集合中。

于 2013-09-30T21:09:20.463 回答
0

我认为这是一个家庭作业,但较慢的算法应该是这样的

make an array to hold types

loop though all the elements

search the element in the collection
if only found one print the I-th element
if more than one, compare the index, only print if the first found index is equal to the current I, otherwise skip

search the type array for type, if none found
put type in the array made in the first line
and print
otherwise skip
于 2013-09-30T21:14:22.500 回答