Search Results

Search found 2 results on 1 pages for 'aymen'.

Page 1/1 | 1 

  • Beginner's book

    - by Aymen
    Hi I'm wanna learn C++ and i'm going to buy one of these books : Accelerated C++ Programming: Principles and Practice Using C++ Wich one do you consider more appropriate for me ? And is it worth it that I buy both of them ? PS: I'm not new to programming, I already have a good experience with Java and Scala. Thank you !

    Read the article

  • Generics not so generic !!

    - by Aymen
    Hi I tried to implement a generic binary search algorithm in scala. Here it is : type Ord ={ def <(x:Any):Boolean def >(x:Any):Boolean } def binSearch[T <: Ord ](x:T,start:Int,end:Int,t:Array[T]):Boolean = { if (start > end) return false val pos = (start + end ) / 2 if(t(pos)==x) true else if (t(pos) < x) binSearch(x,pos+1,end,t) else binSearch(x,start,pos-1,t) } everything is OK until I tried to actually use it (xD) : binSearch(3,0,4,Array(1,2,5,6)) the compiler is pretending that Int not a member of Ord, well what shall I do to solve this ? Thanks

    Read the article

1