Search found 1 match

by Dang Ha The Hien
Sun Apr 16, 2006 5:02 am
Forum: Volume 1 (100-199)
Topic: 101 - The Blocks Problem
Replies: 635
Views: 110438

I have tried solving this Problem with an array of linked lists but I don't know why it not acepted. This's my code:

Program ACM_101;
const
maxn=25;
number : set of char = ['0','1','2','3','4','5','6','7','8','9'];
type
block = ^tblock;
tblock= record
pre, next: block;
number, pack: integer ...

Go to advanced search