-
Code's Tags
-
Your Codes
-
Reffers
-
Linked Codes
|
Code:
Short link for Twitter:
HTML:
HTML view:
Copy Source | Copy HTML- static public void SortNoVirt<T, TValue, TCmp>(T[] keys, TValue[] values, int left, int right, TCmp comparer) where TCmp : IComparer<T>
- {
- // ...
- }
-
- struct IntComparerNoVirt : IComparer<int>
- {
- public int Compare(int x, int y)
- {
- return x - y;
- }
- }
|