Blog Detail

Pascal Programming

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

subscribe Recent Posts

  • Crypto

    Posted on Friday June 6th, 2008 at 04:07 in pascal, pas, crypto, filetype:pas

    {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

    Posted on Friday June 6th, 2008 at 04:06 in record, pas, queue, ember, filetype:pas

    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

    Posted on Thursday June 5th, 2008 at 02:11 in tree, pas, binary tree, binasry search tree

    {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

    Posted on Thursday June 5th, 2008 at 02:10 in pencarian, binary search, biner

    {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

    Posted on Thursday June 5th, 2008 at 02:07 in tree, pas, preorder, binary tree, inorder, postorder, preordertree, inordertree, postordertree

    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

    Posted on Thursday June 5th, 2008 at 02:05 in tree, binasry search tree, binary seacrh

    (**************************************************************)(******* BINARY SEARCH TREE ADT ********)(**************************************************************)TYPE KeyType = Integer; (* the type of key in In...

Comments & Reviews

There is no rating for this blog because there are no comments yet.

Post A Comment/Review

* Your IP is being logged.
* Your e-mail address is used only for verification purposes only and will not be sold, or shown publicly.
* No HTML tags allowed
* DO NOT use the Comments/Reviews to promote your own site.

Name: or Login
E-mail:
Rating:
Verify: Spam Protection: sum of 1 + 1
Comment:
  Remember Information