Archive for November 2012
How to Create New partition in Windows 7

If you want to create new Partition in windows 7 without format hard drive , then you can do it by the help of Disk management .
1. Right-Click on My Computer , then Click on Manage .
2..
Tag :
Window 7
Assembly Language Programming
ICS 312 Course Index
Course Information Sheet
Assignments
Homework and Quiz Scores
Course Notes
Note: The course notes are intended to be general outlines of the material --- they are not a substitute for notes taken in lecture.
Microcomputer.
Get Your Computer to Say What You Type

XP, Vista, 7, and Windows 8 come with a built in voice database, which you can access via the Microsoft SAPI (Speech Application Programming Interface); in this guide, you’ll learn how to get your computer to say what you type using one of three.
Tag :
Window 7
Shortest Path Problem: Dijkstra's Algorithm
Introduction
Dijkstra's algorithm, named after its discoverer, Dutch computer scientist Edsger Dijkstra, is a greedy algorithm that solves the single-source shortest path problem for a directed graph with non negative edge weights. For example, if.
Tag :
Algorithms
Deapth First Search(DFS) and Breadth First Search(BFS) Traversal.
Program to create a graph and use Deapth First Search(DFS)
and Breadth First Search(BFS) Traversal.
#include
#include
#include
void create(); // For creating a graph
void dfs(); // For Deapth First Search(DFS) Traversal.
void bfs(); //.
Tag :
Algorithms
Memory and time efficient Levenshtein algorithm
Introduction
The Levenshtein distance is an algorithm that returns the "difference" between two strings. That difference is actually the least amount of add a letter/delete a letter/replace a letter operations you would have to apply to.
Tag :
Algorithms
Aho-Corasick string matching in C#
Introduction
In this article, I will describe the implementation of an efficient Aho-Corasick algorithm for pattern matching. In simple words, this algorithm can be used for searching a text for specified keywords. The following code is useful when.
Tag :
Algorithms