Skip to content

Instantly share code, notes, and snippets.

@hillal20
Last active October 22, 2018 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hillal20/386ea3cfe8ec79deb6ea102ac6ba917f to your computer and use it in GitHub Desktop.
Save hillal20/386ea3cfe8ec79deb6ea102ac6ba917f to your computer and use it in GitHub Desktop.
PeriodicLazyCoordinates created by hillal20 - https://repl.it/@hillal20/PeriodicLazyCoordinates
const mergeSort = (arr) =>{
if(arr.length < 2 ) {
return arr
}
const middle = Math.floor(arr.length/2);
const right = arr.slice(0, middle);
const left = arr.slice(middle, arr.length)
return merge(mergeSort(left),mergeSort(right))
}
const merge = (left, right)=>{
const result = [];
while(left.length && right.length){
if(left[0] <= right[0]){
result.push(left.shift());
} else{
result.push(right.shift());
}
}
return result.concat(left,right);
}
mergeSort([1,2,3,9,3,2,9,4,8,5])
////////////////////////////////// quicksort
const quicksort = (arr)=>{
if ( arr.length <=1 ){
return arr
}
const pivote = arr[arr.length -1]
const right = []
const left = []
for ( let i = 0; i < arr.length -1 ; i ++){
if (arr[i] < pivote){
left.push(arr[i])
}
else{
right.push(arr[i])
}
}
return [...quicksort(left),pivote,...quicksort(right)]
}
quicksort([1,2,4,3,2,21,1,1,15,2,3,4])
//////////// . binarySearch
let a = [1,8,4,5,9]
//////////////////////////// . sorting arr
function bs(l,h,arr,key){
let sArr = arr.sort((a,b)=>{
return a > b
})
let middle = Math.floor((l+h+1/2))
///////////////////////////// only 1 item in arr
if( l === h ){
if (sArr[l] === key){
return true
}
}
else {
if (sArr[middle]=== key){
return true
}
else if (key < sArr[middle]){
return bs(l, middle-1,sArr,key)
}
else if (key > sArr[middle]){
return bs(middle + 1, h ,sArr,key)
}
return false
}
}
console.log(bs(0,a.length-1,a,8))
//////////////////////////////// . queue
class Queue{
constructor(){
this.storage = {};
this.size = 0
}
enqueue(value ){
this.storage[this.size ++] = value;
}
dequeue(){
this.size--;
let deleted = delete this.storage[0];
for( let key in this.storage){
this.storage[key -1] = this.storage[key]
delete this.storage[key]
}
return deleted
}
getSize(){
return this.size }
}
const copy = new Queue()
copy.enqueue('hilal');
copy.enqueue('filal');
copy.enqueue('bilal');
copy.dequeue()
console.log(copy.getSize())
///////////////////////////////// stack
class Stack{
constructor(){
this.storage = {};
this.size = 0
}
add(value ){
this.storage[this.size ++] = value;
}
remove(){
this.size && this.size--;
let deleted = delete this.storage[this.size];
return deleted
}
getSize(){
return this.size }
}
const copy = new Stack()
copy.add('hilal');
copy.add('filal');
copy.add('bilal');
copy.remove()
copy.add('kilal');
console.log(copy)
////////////////////////////// binary tree
class BT{
constructor(value){
this.value = value;
this.left = null;
this.right = null
}
insert(x){
if( x < this.value && !this.left){
this.left = new BT(x)
}
if(x < this.value && this.left){
this.left.insert(x);
}
if(x > this.value && !this.right){
this.right = new BT(x)
}
if(x > this.value && this.right){
this.right.insert(x)
}
}
contains(x){
if (this.value === x){
return true ;
}
return !! (this.left && this.left.contains(x))
|| !!(this.right && this.right.contains(x))
}
}
///////////////////////
class Node{
constructor(value){
this.value = value;
this.next = null;
}
}
class LinkedList{
constructor(){
this.head = null;
this.tail = null;
this.size = 0;
}
/////////////////
add(value){
const newNode = new Node(value)
if(!this.head){
this.head = newNode;
this.tail = newNode;
this.size ++;
return;
}
this.tail.next = newNode;
this.tail = newNode;
this.size ++;
return;
}
//////////////////
returnHead(){
if(! this.head){
return null;
}
const head = this.head.value
if(this.size === 1){
this.head = null;
this.tail = null;
this.size --;
return head;
}
this.head = this.head.next
this.size --;
return head;
}
}
const copy = new LinkedList()
copy.add(6)
console.log(copy.returnHead())
console.log(copy);
/////////////////////////// possibilities
const pro = (rounds)=>{
const result = [];
let combination;
let possibilities = ['r', 's','z']
const helper = (str,rounds)=>{
if(rounds === 0){
result.push(str);
return;
}
for(let i = 0 ; i < possibilities.length ; i++){
combination = str + possibilities[i]
helper(combination, rounds - 1 );
}
}
helper('',rounds);
return result;
}
console.log(pro(3));
//////////////////////// combinations
let string = "alfo"
let arr = string.split('');
console.log(arr);
const pro = (arr)=>{
const result = [];
let combination;
const helper = (str,newArr)=>{
for(let i = 0 ; i < newArr.length; i++){
combination = str + newArr[i]
result.push(combination)
helper(combination, newArr.slice(i+1));
}
}
helper('',arr);
return result;
}
console.log(pro(arr));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment