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 / 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;
@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 / 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 / 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 / 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;
body{
background: #3F4448;
}
@ManiruzzamanAkash
ManiruzzamanAkash / gits.git
Last active February 1, 2018 18:33
All the git command list from start to bottom as html file
----------------------------------------------------------------------------
#Configure Git(First Time Git Bash Setup)
git config user.email "my@emailaddress.com"
git config user.name "UserName"
----------------------------------------------------------------------------
#Start git after onclick folder
git init
----------------------------------------------------------------------------
@ManiruzzamanAkash
ManiruzzamanAkash / GravatarHelper.php
Created July 1, 2018 10:09
GravatarHelper -> 1) Check if your file has any gravatar image or not | 2) return the gravatar image for email
<?php
namespace App\Helpers;
class GravatarHelper
{
/**
* validate_gravatar
*