Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (2)
Data Encryption Standard (DES) Key Schedule
no vote
This code provides the data encryption standard (DES) in the key schedule, which is the implementation of the algorithm to generate the sub key.
mjordan1
2016-08-23
2
1
Solving Tower of Hanoi Puzzel using AI (Prolog)
4.0
This script solves The Tower of Hanoi puzzle of n disks. It implements the Recursive solution in Prolog. The Tower of Hanoi is a mathematical puzzle consists of three needles (left, right and center) and n disks of different sizes which can slide onto any of the three needles. The puzzle starts with the disks in a neat stack in ascending order of size on one needle, the smallest at the top, thus making a conical shape. The objective of the puzzle is to move the entire stack to another rod, obeying the following simple rules: 1. Only one disk can be moved at a time. 2. Each move consists of taking the upper disk from one of the stacks and placing it on top of another stack i.e. a disk can only be moved if it is the uppermost disk on a stack. 3. No disk may be placed on top of a smaller disk. The minimum number of moves required to solve a Tower of Hanoi puzzle is 2 n - 1, wh
mjordan1
2016-08-23
0
1
No more~