Search found 1 match

by clfsoft
Sat Aug 14, 2004 1:52 pm
Forum: Volume 1 (100-199)
Topic: 101 - The Blocks Problem
Replies: 635
Views: 110151

Help 101 TIme Exceed

It works fine on my machine.
but i got time exceed ,some one help me
thanks in advance.

[c]


#include "stdio.h"
#include "malloc.h"
#include "string.h"
#define ONTO 1
#define OVER 2


typedef struct Node_TAG
{
int value;
int stackNo;
struct Node_TAG* prev;
struct Node_TAG* next;
} Node;

int ...

Go to advanced search