使用监视哨的顺序搜索算法 template <class K,class E> int dataList<K,E>::SeqSearch (const K x)const{ Element[CurrentSize].key =x; int i=0; /将X设置为监视哨 while (Element[i].key !=x)++; 川从前向后顺序搜索 return i+1; }; 15使用监视哨的顺序搜索算法 template <class K, class E> int dataList<K, E>::SeqSearch (const K x) const { Element[CurrentSize].key = x; int i = 0; //将x设置为监视哨 while (Element[i].key != x) i++; //从前向后顺序搜索 return i+1; }; 15