Blog Detail
Pascal Programming
http://pascalProg.blogspot.com
Pascal Tutorial, you can just find in here. I think this blog is completed tutorial. So, you can learn how to start Pascal programming. Just in my this Blog, PascalProg[Dot]BlogSpot[Dot]Com
Recent Posts
Crypto
{Agung Fitriyanto 7644;Firman Maulana 7666;Tri Danarto 7806;}program kripto;uses crt;var kata1,kata2,kata3,sandi1,sandi2,terj1,terj2,bantu:string; a,b,c:char; i,j,k,l:integer; jalan:boolean;procedure caribinernya...
Ember Queue
Program Ember;Const QUEUE_SIZE = 1000000; MaxA = 4; MaxB = 3;Type TQueue = Record Sebelumnya : LongInt; Langkah : Byte; A, B : Integer; End; Var Queue : Array[0..QUEUE_SIZE] o...
Binary Search Tree 2
{Searches a binary search tree in O(logn) }type tree = ^ node; node = record left, right : tree; info : char end;function subtree( item : char ) : tree;{creates a subtree}var t : tree;begin new( t ); t^.info := item; t^.left ...
Binary Search
{Performs a binary search}TYPE tree =^node; node = record info : char; left, right : tree end;VAR root: tree; Number: integer;{$I Tree }{Activates: Binary_Tree, Infix, subTree, Height}procedure search( t : tree; ...
Tree
PROGRAM Tree (Input, Output);{Written by Jason John Schwarz with Turbo Pascal v6.0.Purpose: A demonstration binary tree.}USES CRT;TYPE Point = ^Node; Node = RECORD Data : REAL; Left : Point; Right : Point; END;{Node}V...
Binary Search Tree
(**************************************************************)(******* BINARY SEARCH TREE ADT ********)(**************************************************************)TYPE KeyType = Integer; (* the type of key in In...

