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
/* Stack Implementation trough nodes - 2012 Cedric Van Goethem*/ | |
using System; | |
namespace StackTest | |
{ | |
public class Stack<T> | |
{ | |
public bool IsEmpty { get { return first == null; } } | |
private Node<T> first; |
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
/* Tests based on a Intel® Core™2 Duo Processor P8700 (3M Cache, 2.53 GHz, 1066 MHz FSB) | |
Loading file & string table took 63ms. | |
Access took 547ms based on 10 results. | |
Full recursion took 2821ms based on 10 results. | |
Memory usage after testing: 899MB*/ | |
package net.zepheus.nxjava.tests; | |
import java.io.FileNotFoundException; | |
import java.io.IOException; |
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
/* | |
* HashSet.cs: A quadratic probing implementation of a HashSet | |
* Author: Cedric Van Goethem | |
* Revision: 1 | |
*/ | |
using System; | |
using System.Collections.Generic; | |
namespace DataStructures |
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
-- Description: A red-black tree implementation in Haskell | |
-- Author: Cedric Van Goethem | |
-- Version 1.1, 2013 | |
type Tree a = Node a | |
data Color = Red | Black deriving (Eq, Show) | |
data Node a = Node a Color (Node a) (Node a) | Nil deriving (Eq, Show) | |
tree :: (Ord a) => a -> Tree a | |
tree x = Node x Black Nil Nil |
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
#!/bin/bash | |
echo '# Linux mod for RK3188 rooting script - Zepheus #' | |
echo 'Rooting device...' | |
adb shell mv /data/local/tmp /data/local/tmp.bak | |
adb shell ln -s /data /data/local/tmp | |
adb reboot | |
read -p "--- Reboot 1/3 - Press Space Bar once the device has rebooted" | |
adb shell rm /data/local.prop > nul |
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
// Go-language square root implementation | |
package main | |
import ("fmt") | |
func Sqrt(x float64) float64 { | |
z, precision := 1.0, 2.22e-15 | |
for { | |
z = (z + x/z)/2 | |
if abs(z*z - x) < precision { |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Threading.Tasks; | |
using System.Diagnostics; | |
namespace WlanPasswords | |
{ |
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
static double Pi() | |
{ | |
var value = 1d; | |
for (var i = 1; i < 10000; i++) | |
value += Math.Pow(-1d, i) * (1d / (2*i + 1)); | |
return value * 4d; | |
} |
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
static void PrintFrame(string[] args) | |
{ | |
var maxLen = args.Select(s => s.Trim().Length).Max(); | |
for (var i = 0; i < maxLen + 4; ++i) | |
Console.Write("*"); | |
Console.WriteLine(); | |
var center = maxLen / 2; | |
foreach (var s in args) | |
{ |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Diagnostics; | |
using System.Threading.Tasks; | |
namespace ShiftAnd | |
{ | |
class Program |
OlderNewer