Skip to content

Instantly share code, notes, and snippets.

View Burakkepuc's full-sized avatar
🎯
Focusing

Burak K. Burakkepuc

🎯
Focusing
  • İstanbul / Turkey
View GitHub Profile
@Burakkepuc
Burakkepuc / IsPalindrome.c
Created December 10, 2020 13:05
Data Structure Palindrom Program
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
// Please attension big-small letter. It works with ascii value.
void push(char element);
char pop();
char stack[30],ele;
int top = - 1;
@Burakkepuc
Burakkepuc / InfixToPostfixProject.cpp
Created December 10, 2020 13:01
Infix To Postfix in C
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define SIZE 30
char stack[SIZE];
int top = -1;
void push(char x){
@Burakkepuc
Burakkepuc / EvaluationPostfixinC.cpp
Created December 10, 2020 12:59
Compute Postfix Version 2
#include <stdio.h>
#define SIZE 30
int top = - 1,stack[SIZE];
void push(int m){
top++;
stack[top] = m;
}
@Burakkepuc
Burakkepuc / ComputePostfixStack.c
Created December 10, 2020 12:59
Computing Postfix Expression
#include <stdio.h>
#include <stdlib.h>
#define SIZE 30
#include <string.h>
#include <ctype.h>
int stack[SIZE],top = -1;
void push(int x){
top++;