Edited by Dark Slipstream, 16 August 2009 - 11:10 PM.
iBotModz CBox
(C#) Linear Searching
Started by Dark Slipstream, May 11 2009 08:01 PM
8 replies to this topic
#3
Posted 11 May 2009 - 09:38 PM
Just changed your topic names to include the language as you requested. Nice job on releasing all these snippets.
#4
Posted 12 May 2009 - 10:54 AM
Thanks very much. I'll add some more snipplets and sources later today.
#5
Posted 12 May 2009 - 12:11 PM
A recursive function is a function that calls itself.
Example:
What you posted is a linear search
Example:
//C++ Returns the Greatest Common Denominator int gcd(int x, int y) { if (y == 0) return x; else return gcd(y, x % y); //calls itself }
What you posted is a linear search
#6
Posted 12 May 2009 - 12:14 PM
thanks, I'll have someone update the title.
#7
Posted 12 May 2009 - 12:15 PM
Title updated per request.
#8
Posted 14 May 2009 - 10:21 AM
Great, thanks a lot for the searching bytes and dll.
Look works, but now how to know the hex adress of the scanbyte result?
Thanks.
Ok, i have my answer, for example :
Look works, but now how to know the hex adress of the scanbyte result?
Thanks.
Ok, i have my answer, for example :
MessageBox.Show("Here : " + i.ToString("X2"));
Edited by simba, 14 May 2009 - 11:44 AM.
#9
Posted 15 May 2009 - 11:12 PM
If you are using the offset for File Handling, it doesn't have to be in HEX format, it can be in DEC.