This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
typedef float st_type; | |
typedef struct { | |
st_type value; | |
struct node_t *next; | |
} node_t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.vs/RPN/v14/.suo | |
Debug/RPN.exe | |
Debug/RPN.log | |
Debug/RPN.pdb | |
Debug/RPN.tlog/CL.command.1.tlog | |
Debug/RPN.tlog/CL.read.1.tlog | |
Debug/RPN.tlog/CL.write.1.tlog | |
*.tlog | |
*.ilk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <stack> | |
#include <cstring> | |
#include <cstdio> | |
#include <cstdlib> | |
#include <cmath> | |
#define MAX_LEN 200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <fstream> | |
#include <cstdlib> | |
#include <cstdio> | |
#include <cstring> | |
class State | |
{ | |
unsigned char s[256]; | |
int i, j; |