| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510 |
- //
- // System.Array.cs
- //
- // Author:
- // Joe Shaw ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- //
- using System.Collections;
- using System.Runtime.CompilerServices;
- namespace System
- {
- public abstract class Array : ICloneable
- {
- // Constructor
- protected Array ()
- {
- /* empty */
- }
-
- // Properties
- public int Length
- {
- get
- {
- int length = this.GetLength (0);
- for (int i = 1; i < this.Rank; i++) {
- length *= this.GetLength (i);
- }
-
- return length;
- }
- }
- public int Rank
- {
- get
- {
- return this.GetRank ();
- }
- }
- // InternalCall Methods
-
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern int GetRank ();
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern int GetLength (int dimension);
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern int GetLowerBound (int dimension);
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern object GetValue (int[] idxs);
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern void SetValue (object value, int[] idxs);
-
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern static Array CreateInstance(Type elementType, int[] lengths, int [] bounds);
- // Methods Implementations
- public int GetUpperBound (int dimension)
- {
- return GetLowerBound (dimension) +
- GetLength (dimension);
- }
- public object GetValue (int idx)
- {
- int[] ind = new int [1];
- ind [0] = idx;
- return GetValue (ind);
- }
- public object GetValue (int idx1, int idx2)
- {
- int[] ind = new int [2];
- ind [0] = idx1;
- ind [1] = idx2;
- return GetValue (ind);
- }
- public object GetValue (int idx1, int idx2, int idx3)
- {
- int[] ind = new int [3];
- ind [0] = idx1;
- ind [1] = idx2;
- ind [2] = idx3;
- return GetValue (ind);
- }
- public void SetValue (object value, int idx)
- {
- int[] ind = new int [1];
- ind [0] = idx;
- SetValue (value, ind);
- }
-
- public void SetValue (object value, int idx1, int idx2)
- {
- int[] ind = new int [2];
- ind [0] = idx1;
- ind [1] = idx2;
- SetValue (value, ind);
- }
- public void SetValue (object value, int idx1, int idx2, int idx3)
- {
- int[] ind = new int [3];
- ind [0] = idx1;
- ind [1] = idx2;
- ind [2] = idx3;
- SetValue (value, ind);
- }
- public static Array CreateInstance(Type elementType, int length)
- {
- int[] lengths = new int [1];
- int[] bounds = null;
-
- lengths [0] = length;
-
- return CreateInstance (elementType, lengths, bounds);
- }
-
- public static Array CreateInstance(Type elementType, int l1, int l2)
- {
- int[] lengths = new int [2];
- int[] bounds = null;
-
- lengths [0] = l1;
- lengths [1] = l2;
-
- return CreateInstance (elementType, lengths, bounds);
- }
- public static Array CreateInstance(Type elementType, int l1, int l2, int l3)
- {
- int[] lengths = new int [3];
- int[] bounds = null;
-
- lengths [0] = l1;
- lengths [1] = l2;
- lengths [2] = l3;
-
- return CreateInstance (elementType, lengths, bounds);
- }
- public static Array CreateInstance(Type elementType, int[] lengths)
- {
- int[] bounds = null;
-
- return CreateInstance (elementType, lengths, bounds);
- }
-
- public static int BinarySearch (Array array, object value)
- {
- return BinarySearch (array, array.GetLowerBound (0), array.GetLength (0),
- value, null);
- }
- public static int BinarySearch (Array array, object value, IComparer comparer)
- {
- return BinarySearch (array, array.GetLowerBound (0), array.GetLength (0),
- value, comparer);
- }
- public static int BinarySearch (Array array, int index, int length, object value)
- {
- return BinarySearch (array, index, length, value, null);
- }
- public static int BinarySearch (Array array, int index,
- int length, object value,
- IComparer comparer)
- {
- if (array == null)
- throw new ArgumentNullException ();
- if (array.Rank > 1)
- throw new RankException ();
- if (index < array.GetLowerBound (0) || length < 0)
- throw new ArgumentOutOfRangeException ();
- if (index + length > array.GetUpperBound (0))
- throw new ArgumentException ();
- if (comparer == null && !(value is IComparable))
- throw new ArgumentException ();
- // FIXME: Throw an ArgumentException if comparer
- // is null and value is not of the same type as the
- // elements of array.
- for (int i = 0; i < length; i++)
- {
- int result;
- if (comparer == null && !(array.GetValue(index + i) is IComparable))
- throw new ArgumentException ();
- if (comparer == null)
- result = (value as IComparable).CompareTo(array.GetValue(index + i));
- else
- result = comparer.Compare(value, array.GetValue(index + i));
- if (result == 0)
- return index + i;
- else if (result < 0)
- return ~(index + i);
- }
- return ~(index + length);
- }
- public static void Clear (Array array, int index, int length)
- {
- if (array == null)
- throw new ArgumentNullException ();
- if (array.Rank > 1)
- throw new RankException ();
- if (index < array.GetLowerBound (0) || length < 0 ||
- index + length > array.GetUpperBound (0))
- throw new ArgumentOutOfRangeException ();
- for (int i = 0; i < length; i++)
- {
- if (array.GetValue(index + i) is bool)
- array.SetValue(false, index + i);
- else if (array.GetValue(index + i) is ValueType)
- array.SetValue(0, index + i);
- else
- array.SetValue(null, index + i);
- }
- }
- public virtual object Clone ()
- {
- // Array is abstract -- Array a = new Array();
- Array a = (Array)this.Clone();
- // I don't know how to handle this ?
- if (this.Rank > 1)
- throw new RankException ();
- for (int i = 0; i < this.GetLength (0); i++)
- {
- int index = this.GetLowerBound (0) + i;
- a.SetValue(this.GetValue(index), index);
- }
- return a;
- }
- public static void Copy (Array source, Array dest, int length)
- {
- // I don't know how to handle this ?
- if (source.Rank > 1 || dest.Rank > 1)
- throw new RankException ();
- Copy (source, source.GetLowerBound (0), dest, dest.GetLowerBound (0), length);
- }
- public static void Copy (Array source, int source_idx, Array dest, int dest_idx, int length)
- {
- // I don't know how to handle this ?
- if (source.Rank > 1 || dest.Rank > 1)
- throw new RankException ();
- if (length < 0)
- throw new ArgumentOutOfRangeException ();
- if (source == null || dest == null)
- throw new ArgumentNullException ();
- if (source_idx < source.GetLowerBound (0) ||
- source_idx + length > source.GetUpperBound (0) ||
- dest_idx < dest.GetLowerBound (0) || dest_idx + length > dest.GetUpperBound (0))
- throw new ArgumentException ();
- if (source.Rank != dest.Rank)
- throw new RankException ();
- for (int i = 0; i < length; i++)
- {
- int index = source.GetLowerBound (0) + i;
- dest.SetValue(source.GetValue(index), index);
- }
-
- }
-
- public static int IndexOf (Array array, object value)
- {
- return IndexOf (array, value, 0, array.Length);
- }
- public static int IndexOf (Array array, object value, int index)
- {
- return IndexOf (array, value, index, array.Length - index);
- }
-
- public static int IndexOf (Array array, object value, int index, int length)
- {
- if (array == null)
- throw new ArgumentNullException ();
-
- if (length < 0 || index < array.GetLowerBound (0) ||
- index > array.GetUpperBound (0))
- throw new ArgumentOutOfRangeException ();
- for (int i = 0; i < length; i++)
- {
- if (array.GetValue(index + i) == value)
- return index + i;
- }
- return array.GetLowerBound (0) - 1;
- }
- public static int LastIndexOf (Array array, object value)
- {
- return LastIndexOf (array, value, 0, array.Length);
- }
- public static int LastIndexOf (Array array, object value, int index)
- {
- return LastIndexOf (array, value, index, array.Length - index);
- }
-
- public static int LastIndexOf (Array array, object value, int index, int length)
- {
- if (array == null)
- throw new ArgumentNullException ();
-
- if (length < 0 || index < array.GetLowerBound (0) ||
- index > array.GetUpperBound (0))
- throw new ArgumentOutOfRangeException ();
- for (int i = length - 1; i >= 0; i--)
- {
- if (array.GetValue(index + i) == value)
- return index + i;
- }
- return array.GetLowerBound (0) - 1;
- }
- public static void Reverse (Array array)
- {
- Reverse (array, array.GetLowerBound (0), array.GetLength (0));
- }
- public static void Reverse (Array array, int index, int length)
- {
- if (array == null)
- throw new ArgumentNullException ();
- if (array.Rank > 1)
- throw new RankException ();
- if (index < array.GetLowerBound (0) || length < 0)
- throw new ArgumentOutOfRangeException ();
- if (index + length > array.GetUpperBound (0))
- throw new ArgumentException ();
- for (int i = 0; i < length/2; i++)
- {
- object tmp;
- tmp = array.GetValue (index + i);
- array.SetValue(array.GetValue (index + length - i - 1), index + i);
- array.SetValue(tmp, index + length - i - 1);
- }
- }
-
- public static void Sort (Array array)
- {
- Sort (array, null, array.GetLowerBound (0), array.GetLength (0), null);
- }
- public static void Sort (Array keys, Array items)
- {
- Sort (keys, items, keys.GetLowerBound (0), keys.GetLength (0), null);
- }
- public static void Sort (Array array, IComparer comparer)
- {
- Sort (array, null, array.GetLowerBound (0), array.GetLength (0), comparer);
- }
- public static void Sort (Array array, int index, int length)
- {
- Sort (array, null, index, length, null);
- }
- public static void Sort (Array keys, Array items, IComparer comparer)
- {
- Sort (keys, items, keys.GetLowerBound (0), keys.GetLength (0), comparer);
- }
- public static void Sort (Array keys, Array items, int index, int length)
- {
- Sort (keys, items, index, length, null);
- }
- public static void Sort (Array array, int index, int length, IComparer comparer)
- {
- Sort (array, null, index, length, comparer);
- }
- public static void Sort (Array keys, Array items, int index, int length, IComparer comparer)
- {
- int low0 = index;
- int high0 = index + length - 1;
- qsort (keys, items, index, index + length - 1, comparer);
- }
- private static void qsort (Array keys, Array items, int low0, int high0, IComparer comparer)
- {
- int pivot;
- int low = low0;
- int high = high0;
-
- if (keys.Rank > 1 || items.Rank > 1)
- throw new RankException ();
- if (low >= high)
- return;
- pivot = (low + high) / 2;
- if (compare (keys.GetValue (low), keys.GetValue (pivot), comparer) > 0)
- swap (keys, items, low, pivot);
-
- if (compare (keys.GetValue (pivot), keys.GetValue (high), comparer) > 0)
- swap (keys, items, pivot, high);
- while (low < high)
- {
- // Move the walls in
- while (low < high && compare (keys.GetValue (low), keys.GetValue (pivot), comparer) < 0)
- low++;
- while (low < high && compare (keys.GetValue (pivot), keys.GetValue (high), comparer) < 0)
- high--;
- if (low < high)
- {
- swap (keys, items, low, high);
- low++;
- high--;
- }
- }
- qsort (keys, items, low0, low - 1, comparer);
- qsort (keys, items, high + 1, high0, comparer);
- }
- private static void swap (Array keys, Array items, int i, int j)
- {
- object tmp;
- tmp = keys.GetValue (i);
- keys.SetValue (keys.GetValue (j), i);
- keys.SetValue (tmp, j);
- if (items != null)
- {
- tmp = items.GetValue (i);
- items.SetValue (items.GetValue (j), i);
- items.SetValue (tmp, j);
- }
- }
- private static int compare (object value1, object value2, IComparer comparer)
- {
- if (comparer == null)
- return ((IComparable) value1).CompareTo(value2);
- else
- return comparer.Compare(value1, value2);
- }
-
- }
- }
|