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
/** | |
Tree traverse code of Tree | |
@author : MANIRUZZAMAN AKASH | |
**/ | |
#include<stdio.h> | |
#include<stdlib.h> | |
typedef struct BSTnode{ | |
int data; |
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
/** | |
Insertion Sort in C language | |
@author: MANIRIZZAMAN AKASH | |
@description: Insert value in the array and get the sorted array as insertion sort | |
**/ | |
#include<stdio.h> | |
#define MAX 100 | |
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
/** | |
LinkedList Complete Code of insert, delete, search, get total item | |
@author: Maniruzzaman Akash | |
**/ | |
#include<stdio.h> | |
#include<stdlib.h> | |
typedef struct Node | |
{ | |
int data; |
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
package infixtopostfix; | |
import java.util.Stack; | |
import java.util.Scanner; | |
public class InfixToPostfix { | |
static int getPrecedence(char checkChar) | |
{ | |
if(checkChar=='+'||checkChar=='-') |
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
/** | |
Infix to postfix code in C language | |
@author: Maniruzzaman Akash<[email protected]> | |
**/ | |
#include<stdio.h> | |
#include<string.h> | |
#define MAX 50 | |
char stack[MAX]; |
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
/** | |
BFS code in C language | |
@author: Maniruzzaman Akash<[email protected]> | |
**/ | |
#include<stdio.h> | |
int a[20][20],q[20],visited[20],n,i,j,f=0,r=-1; | |
void bfs(int v) | |
{ | |
for(i=1;i<=n;i++) |
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> | |
void DFS(int); | |
int G[1000][1000], visited[1000], n; // n is no of vertices and graph is sorted in array G[1000][1000] | |
void DFS(int i) | |
{ | |
int j; | |
printf("\n%d", i); | |
visited[i] = 1; |
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
/** | |
Gauss Elimination problem solution in C language [Basic] | |
@author : Maniruzzaman Akash | |
**/ | |
#include<stdio.h> | |
int main(){ | |
int i, j, k, n; | |
float matrix[100][100]; | |
float sum = 0.0; |
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
body{ | |
background: #3F4448; | |
} |
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
---------------------------------------------------------------------------- | |
#Configure Git(First Time Git Bash Setup) | |
git config user.email "[email protected]" | |
git config user.name "UserName" | |
---------------------------------------------------------------------------- | |
#Start git after onclick folder | |
git init | |
---------------------------------------------------------------------------- |
OlderNewer