Skip to content

Instantly share code, notes, and snippets.

View Zepheus's full-sized avatar

Cedric Van Goethem Zepheus

View GitHub Profile
@Zepheus
Zepheus / nx_v1_bench.java
Created July 25, 2012 11:24
javanx benchmark - version 1
/* 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;
@Zepheus
Zepheus / LinkedStackImplementation.cs
Created May 3, 2012 19:18
C# Linked Stack Implementation
/* 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;