Skip to content

Instantly share code, notes, and snippets.

View MichaelStett's full-sized avatar

Michał Tymejczyk MichaelStett

  • Kongsberg
  • Szczecin
  • 23:53 (UTC +02:00)
View GitHub Profile
@swlaschin
swlaschin / linq2fs.md
Last active March 7, 2023 22:15
C# LINQ -> F# equivalent
@mycodeschool
mycodeschool / BalancedParentheses.cpp
Created October 29, 2013 00:49
C++ Program to check for balanced parentheses in an expression using stack.
/*
C++ Program to check for balanced parentheses in an expression using stack.
Given an expression as string comprising of opening and closing characters
of parentheses - (), curly braces - {} and square brackets - [], we need to
check whether symbols are balanced or not.
*/
#include<iostream>
#include<stack>
#include<string>
using namespace std;
@unsuthee
unsuthee / skiplist.h
Created November 20, 2012 08:00
C++ Implementation of Skiplist
///////////////////////////////////////////////////////////////////////////////
#ifndef _SKIPLIST_H_
#define _SKIPLIST_H_
#include <iostream>
#include <sstream>
///////////////////////////////////////////////////////////////////////////////