數據結構算法設計

/*一、統計出單鏈表HL中節點的值等於給定值X的節點數*/ int CountX(LNode* HL,ElemType x) int CountX(LNode* HL,ElemType x) { int i=0; LNode* p=HL; //i爲計數器 while(p!=NULL) { if(P->data==x) i++; p=p->next; }//while,出循環時i中的值即爲x節點
相關文章
相關標籤/搜索