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
/* 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; |
NewerOlder