Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-112.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afe6808a8a6ec35fab6134c4a745ba444a2f98c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using System;

public interface IComparer<T>
{
	void Compare (T a);
}

class IC : IComparer<Foo<int>>
{
	public void Compare (Foo<int> a)
	{ }
}

public struct Foo<K>
{
	public K Value;

	public Foo (K value)
	{
		Value = value;
	}
}

public class List<T>
{
	public virtual void Sort (IComparer<T> c, T t)
	{
		Sorting.IntroSort<T> (c, t);
	}
}

public class Sorting
{
	public static void IntroSort<T> (IComparer<T> c, T t)
	{
		new Sorter<T> (c, 4, t).InsertionSort (0);
	}

	class Sorter<T>
	{
		IComparer<T> c;
		T[] a;

		public Sorter (IComparer<T> c, int size, T item)
		{
			this.c = c;
			a = new T [size];
		}

		internal void InsertionSort (int i)
		{
			T other;
			c.Compare (other = a[i]);
		}
	}
}

class X
{
	public static void Main ()
	{
		List<Foo<int>> list = new List<Foo<int>> ();
		Foo<int> foo = new Foo<int> (3);
		list.Sort (new IC (), foo);
	}
}