


Anyone know a good site that explains step by step how to create a minimized Deterministic Finite State Automaton? I found a few site, but they don't go into enough detail on the process. Thanks....
Hi, I'm currently reading a problem book (examples are written in FORTRAN, but the problems are interesting none the less) from the late 80's that I got at my local library just keep my brain alive and learn more C++ at the same time.I'm currently solving (actually, I already (partial...
hello peoplei was wondering if anyone could come up with a program that could excatly compute the amount of time that it takes for a simple arthimetic operation. I mean lets assume that there is a simple addition program, is it possible to find the exact amount of time that it took for the computati...
hello everyone, I need to check whether the click point is inside a polygon(made up of a set of points) , if you know the algorithm or tips, plz help, tks....
HI I need program like that Preorder traverse using recursive procedure for n order child treeplz can U help me with in this Issue...
Definition of BigOh says that 0<=f(x)<=Cg(x), for x>=k, where C is positive constant, and k is nonnegative constant;To prove n+1 is belong to BigOh(n),we purposely take C=4, k=1But in this case it is n<4(n+1) for x>1,can we still write it as n<=4(n+1) for x>1, and says that C=4...
I need some ideas on how a chess game is programmed. Thanks in advance,Ted...
Gurus,Can you please guide me to find the logic or algoirthm to check whether a Point P(x, y) lies in a Line constructed by two Points A(x, y) & B(x, y)?Thanks in advance....
for(int i=0;i<10;i++) for(int j=0;j<10;j++){ if(i==j) Dosomething(); else Dosomethingelse(); }Thanks in advance-Yaskatze...
Hi !I have a nice logical problem.I have a matrix of boolean values like this:|--------||Matrix |User1|User2|User3||---|--|--|--||Object1|false|true |true ||---|--|--|--||Object2|true |false|true ||---|--|--|--||Object3|true |true |true ||---|--|--|--||Object4|false|false|false||---|--|--|--||Objec...
Somebody must have an algorithm for this. Here's the situation:I have a stream of integers of known size (12 bit) and known cardinality (i.e., how many integers there are).I also have 2 counters that will count the numbers <= or >= limit values that I can set (which can be different for...
Hi all, I will graduate in this year and I want to pass an IT exam at the end of my school. Everything's cool but I don't have any IT lessons at school. And I don't know the basics of programming but have some experience with C/C++.And my question is if anyone can answer me to these...
many forms of PRN generator are recursive functions like x1 = f( x0 )wich means the new RND comes from the computation of some algo on a previous value of the same algo.for instance, the C rand() function works like this... simply the fact of passing the previous value on and on is hidden to the use...
I'm implementing a virtual list view control that could potentially hold a few million entries that will be kept in memory (i.e., not stored to disk until program is exited). I want to provide a search ability, and to ensure that each item in the list is unique. I was thinking about using a B...
I think the title speaks out for its self alone :PI am working on a project which simulates an operation system and need B+ tree functions in C to handle the data.If anyone could help, I'd praise him!I searched a lot in the web but came up with nothing:(PS:Regards from a Greek student!!...
