Skip to content

Instantly share code, notes, and snippets.

View DebashishPaul's full-sized avatar
🧍‍♂️
react life

Debashish Paul DebashishPaul

🧍‍♂️
react life
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<style type="text/css">
@DebashishPaul
DebashishPaul / circle animation2.js
Last active May 29, 2018 18:22
Javascript animation circle
<!DOCTYPE html>
<html>
<head>
<title>Circle Animation in JS</title>
<style type="text/css">
.circle{
width: 20px;
height: 20px;
border: 1px solid #000;
position: absolute;
html { height: 100%; }
body {
min-height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: #EEE;
}
.flip-clock {
body {
background: #333
}
.container {
margin: 40px auto;
max-width: 600px;
}
p {
color: #fff;
}
.box{
height: 100px;
width: 100px;
background: lightslategrey;
margin: 20px auto;
display: block;
animation: circle 5s forwards;
}
@keyframes circle{
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>javascript</title>
<link rel="stylesheet" type="text/css" href="dev.css">
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>javascript</title>
<link rel="stylesheet" type="text/css" href="dev.css">
</head>
<body>
#include"binarysearchtree.h"
//#include"quetype.h"
#include <iostream>
using namespace std;
template <class ItemType>
TreeType<ItemType>::TreeType()
{
root=NULL;
}
@DebashishPaul
DebashishPaul / main.cpp
Last active March 7, 2018 05:23
Sorted data structure
#include <iostream>
#include"sortedtype.h"
#include"sortedtype.cpp"
using namespace std;
int main()
{
SortedType<int> a;
//int x;
#include <iostream>
using namespace std;
int main()
{
int d;
cin>>d;
if(d=1)
{