View Single Post
Join Date: Jul 2008
Posts: 320
Reputation: cikara21 is an unknown quantity at this point 
Solved Threads: 63
cikara21's Avatar
cikara21 cikara21 is offline Offline
Posting Whiz

Re: Not repeated elements in link list (help)

 
0
  #5
Dec 4th, 2008
Just call this..
  1. bool sample::exist(NodePtr *p,int age)
  2. {
  3. bool isexist=false;
  4. NodePtr *n_ptr = p;
  5. for(;n_ptr!=0;n_ptr=n_ptr->Next)
  6. if(n_ptr->Info.Age==age)
  7. isexist=true;
  8. return isexist;
  9. )
.:-cikara21-:.
Reply With Quote