View Image_matching_and_Homogeneous_transformation.py
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
# ================================================== | |
# Md. Tahmid Hasan | |
# Web: tahmidhasan3003 | |
# ================================================== | |
import cv2 | |
import numpy as np | |
import math | |
from matplotlib import pyplot as plt |
View Finding Block in a Graph.cpp
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
/* | |
==================================================== | |
################## Code Author ################## | |
==================================================== | |
Md. Tahmid Hasan | |
#tahmidhasan3003 | |
==================================================== | |
Code Title: Finding Block in a Graph.cpp | |
==================================================== | |
############## Algorithm Reference ############## |
View S-DES Key Generation.cpp
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
/* | |
Md Tahmid Hasan | |
CSE, BSMRSTU | |
tahmidhasan3003 | |
*/ | |
#include<bits/stdc++.h> | |
using namespace std; | |
int p10[10]= {3,5,2,7,4,10,1,9,8,6}, p8[8]= {6,3,7,4,8,5,10,9}; |
View Playfair Cipher.cpp
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
/* | |
Md Tahmid Hasan | |
CSE, BSMRSTU | |
tahmidhasan3003 | |
*/ | |
#include<bits/stdc++.h> | |
using namespace std; | |
char table[5][5]; |
View Caesar Cipher.cpp
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
/* | |
Md Tahmid Hasan | |
CSE, BSMRSTU | |
tahmidhasan3003 | |
*/ | |
#include<bits/stdc++.h> | |
using namespace std; | |
string encDec(string inputText, int key, bool encryption) |
View Simple Math Expression.cpp
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
/* | |
Md Tahmid Hasan | |
CSE, BSMRSTU | |
tahmidhasan3003 | |
*/ | |
#include<bits/stdc++.h> | |
#include<sstream> | |
using namespace std; |
View Longest Common Subsequence.cpp
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
/* | |
Md Tahmid Hasan | |
CSE, BSMRSTU | |
tahmidhasan3003 | |
*/ | |
#include<bits/stdc++.h> | |
#define fo freopen("inlcs.txt","r",stdin) | |
#define N cout<<endl | |
#define MAX 100 |
View Merge Sort.cpp
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
/* | |
Md Tahmid Hasan | |
CSE, BSMRSTU | |
tahmidhasan3003 | |
*/ | |
#include<bits/stdc++.h> | |
#define L 100 | |
using namespace std; |
View Insertion Sort.cpp
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
/* | |
Md Tahmid Hasan | |
CSE, BSMRSTU | |
tahmidhasan3003 | |
*/ | |
#include<bits/stdc++.h> | |
using namespace std; | |
void insertion_sort(int *a,int s) |