Levenshtein distance is a measure of the dissimilarity between two strings. The distance is the number of insertions, deletions, or substitutions required to transform a given string into the target string.
Category Archive: C/C++
Dec 26
How to hack a computer with IP address
There are plenty of papers out there that go into how to obtain an IP Address from the preferred mark of your choice. So I’m not going to go into that subject. Alright so say we got the targets IP Address finally. What do we do with this IP Address. Well first ping the IP …
Dec 20
Mouse Programming in Turbo C++
Mouse can be used in text mode as well as in graphics mode. Usually it is used in graphics mode. Hence we must first change over to graphics mode. In our program the function initgraph() is responsible for switching the mode from text to graphics. DETECT is a macro defined in ‘graphics.h’. It requests initgraph() …
Aug 21
Win32 Multithreading and Synchronization
Introduction: This tutorial will explain how to create and manage multiple threads in Windows. This is an advanced tutorial; the reader should be familiar with Win32 programming. The need for responsive user-centric programs is a good reason to create programs that use multiple threads. By creating multiple threads, a program can seem to do many …
Aug 19
QuickSort algorithm, code for Java, C++
Quicksort is a fast sorting algorithm, which is used not only for educational purposes, but widely applied in practice. On the average, it has O(n log n) complexity, making quicksort suitable for sorting big data volumes. The idea of the algorithm is quite simple and once you realize it, you can write quicksort as fast …
Jul 20


