我创建结构如下
struct DoubleListDataNode
{
INT nSequenceID;
DOUBLE fTemp;
DOUBLE fHumi;
INT nTimeHour;
INT nTimeMiin;
INT nTS1;
INT nTS2;
};
我创建了一个列表
typedef CList<DoubleListDataNode *, DoubleListDataNode *> listDoubleListDataNode;
我创建公共变量
listDoubleListDataNode gDoubleListDataNode;
DoubleListDataNode *pDoubleListDataNode;
现在,我在列表中有数据
1 1.00 2.00 001H01M 1 2
2 1.00 2.00 002H01M 1 2
3 3.00 4.00 003H02M 3 4
4 3.00 4.00 004H02M 3 4
5 5.00 6.00 005H03M 5 6
6 5.00 6.00 006H03M 5 5
如何在 CList 中使用 Find 功能来查找 nSequenceID = 1 或 5 ?
没有 findindex(0) 和 findindex(5)
我尝试 gDoubleListDataNode(1, ...),但它不起作用
谢谢