by admin | Mar 15, 2016 | Computer Science, Network Tools, Software Analysis
INTRODUCTION System, Model, Simulation: System is a method or scheme or process in which group of parts which are interconnected and working together to achieve common goals. It can be tangible or intangible. It can be a kind of state machine. The operations are...
by admin | Mar 15, 2016 | Computer Science, Java, Program Code, Programming
EncryptionDecryption import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Scanner; /** * Class represents encrypt. */ public class Encrypt { private static final Scanner SCANNER = new Scanner(System.in);...
by admin | Apr 7, 2010 | Algorithms, Computer Science, Programming
DFS Algorithm: Depth first search is another way of traversing graphs, which is closely related to preorder traversal of a tree. Recall that preorder traversal simply visits each node before its children. It is most easy to program as a recursive routine:...
by admin | Apr 1, 2010 | C / C#, Computer Science, Program Code, Programming
The Multiplayer Game of tic-tac-toe Abstract: The game is built over a 3X3 matrix which is used by two players use it alternatively. The two players alternate between ‘X’ and ‘O’ symbols. The game works on a few rules the first player to cross the following boxes win....