Skip to content

Instantly share code, notes, and snippets.

@chancez
Created February 1, 2014 00:08
Show Gist options
  • Save chancez/8745932 to your computer and use it in GitHub Desktop.
Save chancez/8745932 to your computer and use it in GitHub Desktop.
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<time.h>
char inputChar()
{
// TODO: rewrite this function
return ' ';
}
char *inputString()
{
// TODO: rewrite this function
return "";
}
void testme()
{
int tcCount = 0;
char *s;
char c;
int state = 0;
while (1)
{
tcCount++;
c = inputChar();
s = inputString();
printf("Iteration %d: c = %c, s = %s, state = %d\n", tcCount, c, s, state);
if (c == '[' && state == 0) state = 1;
if (c == '(' && state == 1) state = 2;
if (c == '{' && state == 2) state = 3;
if (c == ' '&& state == 3) state = 4;
if (c == 'a' && state == 4) state = 5;
if (c == 'x' && state == 5) state = 6;
if (c == '}' && state == 6) state = 7;
if (c == ')' && state == 7) state = 8;
if (c == ']' && state == 8) state = 9;
if (s[0] == 'r' && s[1] == 'e'
&& s[2] == 's' && s[3] == 'e'
&& s[4] == 't' && s[5] == '\0'
&& state == 9)
{
printf("error ");
exit(200);
}
}
}
int main(int argc, char *argv[])
{
srand(time(NULL));
testme();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment