Skip to content

Instantly share code, notes, and snippets.

View ManiruzzamanAkash's full-sized avatar
👨‍💻
Building the Better World By Writing Stuffs...

Maniruzzaman Akash ManiruzzamanAkash

👨‍💻
Building the Better World By Writing Stuffs...
View GitHub Profile
@ManiruzzamanAkash
ManiruzzamanAkash / Gauss_Elimination.c
Created March 7, 2017 16:16
Gauss Elimination problem solution in C language simple
/**
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;
@ManiruzzamanAkash
ManiruzzamanAkash / Dfs.c
Last active April 16, 2022 17:46
DFS code in C language
#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;
@ManiruzzamanAkash
ManiruzzamanAkash / BFS.c
Created February 16, 2017 18:57
BFS code in C language
/**
BFS code in C language
@author: Maniruzzaman Akash<manirujjamanakash@gmail.com>
**/
#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++)
@ManiruzzamanAkash
ManiruzzamanAkash / InfixToPostfix.c
Created February 16, 2017 18:55
Infix notation to Postfix Notation Code in C language
/**
Infix to postfix code in C language
@author: Maniruzzaman Akash<manirujjamanakash@gmail.com>
**/
#include<stdio.h>
#include<string.h>
#define MAX 50
char stack[MAX];
@ManiruzzamanAkash
ManiruzzamanAkash / infixToPostfix.java
Created February 16, 2017 18:52
Infix to Postfix notation code in java language
package infixtopostfix;
import java.util.Stack;
import java.util.Scanner;
public class InfixToPostfix {
static int getPrecedence(char checkChar)
{
if(checkChar=='+'||checkChar=='-')
@ManiruzzamanAkash
ManiruzzamanAkash / Linkedlist.c
Created February 13, 2017 20:37
Linkedlist complete example of insert, search, delete, total item in C language
/**
LinkedList Complete Code of insert, delete, search, get total item
@author: Maniruzzaman Akash
**/
#include<stdio.h>
#include<stdlib.h>
typedef struct Node
{
int data;
@ManiruzzamanAkash
ManiruzzamanAkash / insertion_sort.c
Created February 13, 2017 20:31
Insertion Sort in C language->Insert value in the array and get the sorted array as insertion sort
/**
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
@ManiruzzamanAkash
ManiruzzamanAkash / tree_taverse.c
Created February 13, 2017 20:16
Tree All traverse Code in C language
/**
Tree traverse code of Tree
@author : MANIRUZZAMAN AKASH
**/
#include<stdio.h>
#include<stdlib.h>
typedef struct BSTnode{
int data;
[
{
"Title": "Avatar",
"Year": "2009",
"Rated": "PG-13",
"Released": "18 Dec 2009",
"Runtime": "162 min",
"Genre": "Action, Adventure, Fantasy",
"Director": "James Cameron",
"Writer": "James Cameron",