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
// simple sorted list implementation using insert sort | |
// maintainer hugoyu | |
using System.Collections.Generic; | |
namespace Util | |
{ | |
public class SortedList<T> | |
{ | |
public SortedList(IComparer<T> comparer = null) |
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
// desc eval arithmetic | |
// note improve error handling | |
// maintainer hugoyu | |
using System; | |
using System.Diagnostics; | |
using System.Collections.Generic; | |
public class EvalArithmetic | |
{ |
NewerOlder