Skip to content

Instantly share code, notes, and snippets.

View vntkumar8's full-sized avatar

Vineet Kumar vntkumar8

View GitHub Profile
@vntkumar8
vntkumar8 / BinarySearchTree.c
Created November 20, 2015 16:29
BinarySearchTree Implementation
//still corrections require
#include <stdio.h>
#include <stdlib.h>
struct Node{
int data;
struct Node* left;
struct Node* right;
};
struct Node* root=NULL;
//struct Node* newNode = (struct Node*)malloc(sizeof(struct Node*));
@vntkumar8
vntkumar8 / designer.html
Created December 23, 2014 14:13
designer
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-profile.html">
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;