i have implementation of skiplist,but it shows me very unclear error

#include<iostream>
#include<cstdlib>
#include<ctime>
#include<cmath>
#include<cstring>
using namespace std;
const float P=0.5;
    const int max_level=6;
template<class T>
struct Skip
{

    T value;
    Skip<T> ** forward;//array of pointers
    Skip(int level,const T &value){
        forward=new Skip<T>*[level+1];
        memset(forward,0,sizeof(Skip<T>*)*(level+1));
        this->value=values;
    }


~Skip(){

    delete[]forward;
}

};
template<class T>

struct  skipset
{
    Skip<T>*header;
    int level;
    skipset(){
header=new Skip<T>(max_level,T());
level=0;
    }

    ~skipset()
    {
        delete header;

    }
    void print() const;
    bool contains(const T &) const;
    void insert(const T &) ;
    void delet(const T &);
    };
 float frand(){
     return (float)rand()/RAND_MAX;
}
 int random_level(){
     static bool first=true;
     if(first){
         srand((unsigned) time(NULL));
         first=false;

     }
     int lvl=(int)(log(frand())/log(1.-P));
     return lvl<max_level?lvl:max_level;
 }
 template<class T>
 void skipset<T>::print()const{
     const Skip<T>*x=header->forward[0];
     cout<<"{";
     while(x!=NULL){

         cout<<x->value;
         x=x->forward[0];
         if(x!=NULL)
             cout<<",";


     }
     cout<<"}"<<endl;
 }

 template<class T>
  bool SkipSet<T>contains(const T &search_value) const {
     const SkipNode<T> *x = header;
     for (int i = level; i >= 0; i--) {
         while (x->forward[i] != NULL && x->forward[i]->value < search_value) {
            x = x->forward[i];
         }
     }
     x = x->forward[0];

    return x != NULL && x->value == search_value;


 }
 template<class T>
 void skipset<T>::insert(const T &value){
     Skip<T> *x=header;
     Skip<T> *update[max_level+1];
     memset(update,0,sizeof(Skip<T>*) * (max_level+1));
     for(int i=level;i>=0;i--){

         while(x->forward[i]!=NULL && x->forward[i]->value < value)
             x=x->forward[i];


     }

      update[i]=x;
      x=x->forward[0];
      if(x==NULL   || x->value!=value){
int lvl=random_level();
if(lvl>level){
    for(int i=level+1;.i<=lvl;i++){
        update[i]=header;


    }
    level=lvl;


}
 x=new Skip<T>(lvl,value);
 for(int i=0;i<=lvl;i++){
     x->forward[i]=update[i]->forward[i];
     update[i]->forward[i]=x;



 }



      }


 }



int main(){





    return 0;
}

error says that contains is not function of skipset structure, some ; misses and so on,please see error list

1>------ Build started: Project: skip_list, Configuration: Debug Win32 ------
1>  skip_list.cpp
1>c:\users\dato\documents\visual studio 2010\projects\skip_list\skip_list\skip_list.cpp(80): error C2143: syntax error : missing ';' before '<'
1>c:\users\dato\documents\visual studio 2010\projects\skip_list\skip_list\skip_list.cpp(80): error C2988: unrecognizable template declaration/definition
1>c:\users\dato\documents\visual studio 2010\projects\skip_list\skip_list\skip_list.cpp(80): error C2059: syntax error : '<'
1>c:\users\dato\documents\visual studio 2010\projects\skip_list\skip_list\skip_list.cpp(80): error C2039: 'contains' : is not a member of '`global namespace''
1>c:\users\dato\documents\visual studio 2010\projects\skip_list\skip_list\skip_list.cpp(94): error C2065: 'T' : undeclared identifier
1>c:\users\dato\documents\visual studio 2010\projects\skip_list\skip_list\skip_list.cpp(94): error C2143: syntax error : missing ';' before '{'
1>c:\users\dato\documents\visual studio 2010\projects\skip_list\skip_list\skip_list.cpp(94): error C2447: '{' : missing function header (old-style formal list?)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
link|improve this question

how about fixing your syntax errors?.... – Mitch Wheat Nov 21 '11 at 8:43
2  
could you at least mark which line is 80? – Anders K Nov 21 '11 at 8:44
You should also make a point of highlighting where the error is, most of us don't have the time to go through your code to determine line numbers etc.! – Nim Nov 21 '11 at 8:45
Welcome on SO, please indent your code correctly and annotate the lines pointed to by the errors (// line 80) so we don't have to guess. – Matthieu M. Nov 21 '11 at 8:45
feedback

2 Answers

SkipSet should be skipset.
skipset<T>contains should be skipset<T>::contains.
SkipNode is not declared.

At this point I gave up.

link|improve this answer
feedback

Isn't the line 80 of your code should be something like this -->

bool SkipSet<T>::contains(const T &search_value) const {... }

I think that is where you have the error... (Or I guess so ;))

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.