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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
/* ****************************************************************************
*
* Copyright (c) Microsoft Corporation.
*
* This source code is subject to terms and conditions of the Microsoft Public License. A
* copy of the license can be found in the License.html file at the root of this distribution. If
* you cannot locate the Microsoft Public License, please send an email to
* dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
* by the terms of the Microsoft Public License.
*
* You must not remove this notice, or any other, from this software.
*
*
* ***************************************************************************/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace Microsoft.Scripting.Utils {
public static class ArrayUtils {
internal sealed class FunctorComparer<T> : IComparer<T> {
private readonly Comparison<T> _comparison;
public FunctorComparer(Comparison<T> comparison) {
Assert.NotNull(comparison);
_comparison = comparison;
}
public int Compare(T x, T y) {
return _comparison(x, y);
}
}
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2105:ArrayFieldsShouldNotBeReadOnly")]
public static readonly string[] EmptyStrings = new string[0];
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2105:ArrayFieldsShouldNotBeReadOnly")]
public static readonly object[] EmptyObjects = new object[0];
public static IComparer<T> ToComparer<T>(Comparison<T> comparison) {
return new FunctorComparer<T>(comparison);
}
public static TOutput[] ConvertAll<TInput, TOutput>(TInput[] input, Converter<TInput, TOutput> conv) {
#if SILVERLIGHT
ContractUtils.RequiresNotNull(input, "input");
ContractUtils.RequiresNotNull(conv, "conv");
TOutput[] res = new TOutput[input.Length];
for (int i = 0; i < input.Length; i++) {
res[i] = conv(input[i]);
}
return res;
#else
return System.Array.ConvertAll<TInput, TOutput>(input, conv);
#endif
}
public static T[] FindAll<T>(T[] array, Predicate<T> match) {
#if SILVERLIGHT
if (array == null) {
throw new ArgumentNullException("array");
}
if (match == null) {
throw new ArgumentNullException("match");
}
List<T> list = new List<T>();
for (int i = 0; i < array.Length; i++) {
if (match(array[i])) {
list.Add(array[i]);
}
}
return list.ToArray();
#else
return System.Array.FindAll(array, match);
#endif
}
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1814:PreferJaggedArraysOverMultidimensional", MessageId = "1#")] // TODO: fix
public static void PrintTable(StringBuilder output, string[,] table) {
ContractUtils.RequiresNotNull(output, "output");
ContractUtils.RequiresNotNull(table, "table");
int max_width = 0;
for (int i = 0; i < table.GetLength(0); i++) {
if (table[i, 0].Length > max_width) {
max_width = table[i, 0].Length;
}
}
for (int i = 0; i < table.GetLength(0); i++) {
output.Append(" ");
output.Append(table[i, 0]);
for (int j = table[i, 0].Length; j < max_width + 1; j++) {
output.Append(' ');
}
output.AppendLine(table[i, 1]);
}
}
public static T[] Copy<T>(T[] array) {
return (array.Length > 0) ? (T[])array.Clone() : array;
}
public static T[] MakeArray<T>(ICollection<T> list) {
if (list.Count == 0) {
return new T[0];
}
T[] res = new T[list.Count];
list.CopyTo(res, 0);
return res;
}
public static T[] MakeArray<T>(ICollection<T> elements, int reservedSlotsBefore, int reservedSlotsAfter) {
if (reservedSlotsAfter < 0) throw new ArgumentOutOfRangeException("reservedSlotsAfter");
if (reservedSlotsBefore < 0) throw new ArgumentOutOfRangeException("reservedSlotsBefore");
if (elements == null) {
return new T[reservedSlotsBefore + reservedSlotsAfter];
}
T[] result = new T[reservedSlotsBefore + elements.Count + reservedSlotsAfter];
elements.CopyTo(result, reservedSlotsBefore);
return result;
}
public static T[] RotateRight<T>(T[] array, int count) {
ContractUtils.RequiresNotNull(array, "array");
if ((count < 0) || (count > array.Length)) throw new ArgumentOutOfRangeException("count");
T[] result = new T[array.Length];
// The head of the array is shifted, and the tail will be rotated to the head of the resulting array
int sizeOfShiftedArray = array.Length - count;
Array.Copy(array, 0, result, count, sizeOfShiftedArray);
Array.Copy(array, sizeOfShiftedArray, result, 0, count);
return result;
}
public static T[] ShiftRight<T>(T[] array, int count) {
ContractUtils.RequiresNotNull(array, "array");
if (count < 0) throw new ArgumentOutOfRangeException("count");
T[] result = new T[array.Length + count];
System.Array.Copy(array, 0, result, count, array.Length);
return result;
}
public static T[] ShiftLeft<T>(T[] array, int count) {
ContractUtils.RequiresNotNull(array, "array");
if (count < 0) throw new ArgumentOutOfRangeException("count");
T[] result = new T[array.Length - count];
System.Array.Copy(array, count, result, 0, result.Length);
return result;
}
public static T[] Insert<T>(T item, IList<T> list) {
T[] res = new T[list.Count + 1];
res[0] = item;
list.CopyTo(res, 1);
return res;
}
public static T[] Insert<T>(T item1, T item2, IList<T> list) {
T[] res = new T[list.Count + 2];
res[0] = item1;
res[1] = item2;
list.CopyTo(res, 2);
return res;
}
public static T[] Insert<T>(T item, T[] array) {
T[] result = ShiftRight(array, 1);
result[0] = item;
return result;
}
public static T[] Insert<T>(T item1, T item2, T[] array) {
T[] result = ShiftRight(array, 2);
result[0] = item1;
result[1] = item2;
return result;
}
public static T[] Append<T>(T[] array, T item) {
ContractUtils.RequiresNotNull(array, "array");
System.Array.Resize<T>(ref array, array.Length + 1);
array[array.Length - 1] = item;
return array;
}
public static T[] AppendRange<T>(T[] array, IList<T> items) {
return AppendRange<T>(array, items, 0);
}
public static T[] AppendRange<T>(T[] array, IList<T> items, int additionalItemCount) {
ContractUtils.RequiresNotNull(array, "array");
if (additionalItemCount < 0) throw new ArgumentOutOfRangeException("additionalItemCount");
int j = array.Length;
System.Array.Resize<T>(ref array, array.Length + items.Count + additionalItemCount);
for (int i = 0; i < items.Count; i++, j++) {
array[j] = items[i];
}
return array;
}
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1814:PreferJaggedArraysOverMultidimensional")] // TODO: fix
public static T[,] Concatenate<T>(T[,] array1, T[,] array2) {
int columnsCount = array1.GetLength(1);
Debug.Assert(array2.GetLength(1) == columnsCount);
int row1Count = array1.GetLength(0);
int row2Count = array2.GetLength(0);
int totalRowsCount = row1Count + row2Count;
T[,] result = new T[totalRowsCount, columnsCount];
for (int i = 0; i < row1Count; i++) {
for (int j = 0; j < columnsCount; j++) {
result[i, j] = array1[i, j];
}
}
for (int i = 0; i < row2Count; i++) {
for (int j = 0; j < columnsCount; j++) {
result[(i + row1Count), j] = array2[i, j];
}
}
return result;
}
public static void SwapLastTwo<T>(T[] array) {
Debug.Assert(array != null && array.Length >= 2);
T temp = array[array.Length - 1];
array[array.Length - 1] = array[array.Length - 2];
array[array.Length - 2] = temp;
}
public static T[] RemoveFirst<T>(IList<T> list) {
return ShiftLeft(MakeArray(list), 1);
}
public static T[] RemoveFirst<T>(T[] array) {
return ShiftLeft(array, 1);
}
public static T[] RemoveLast<T>(T[] array) {
ContractUtils.RequiresNotNull(array, "array");
System.Array.Resize(ref array, array.Length - 1);
return array;
}
public static T[] RemoveAt<T>(IList<T> list, int indexToRemove) {
return RemoveAt(MakeArray(list), indexToRemove);
}
public static T[] RemoveAt<T>(T[] array, int indexToRemove) {
ContractUtils.RequiresNotNull(array, "array");
ContractUtils.Requires(indexToRemove >= 0 && indexToRemove < array.Length, "index");
T[] result = new T[array.Length - 1];
if (indexToRemove > 0) {
Array.Copy(array, 0, result, 0, indexToRemove);
}
int remaining = array.Length - indexToRemove - 1;
if (remaining > 0) {
Array.Copy(array, array.Length - remaining, result, result.Length - remaining, remaining);
}
return result;
}
public static T[] InsertAt<T>(IList<T> list, int index, params T[] items) {
return InsertAt(MakeArray(list), index, items);
}
public static T[] InsertAt<T>(T[] array, int index, params T[] items) {
ContractUtils.RequiresNotNull(array, "array");
ContractUtils.RequiresNotNull(items, "items");
ContractUtils.Requires(index >= 0 && index <= array.Length, "index");
if (items.Length == 0) {
return Copy(array);
}
T[] result = new T[array.Length + items.Length];
if (index > 0) {
Array.Copy(array, 0, result, 0, index);
}
Array.Copy(items, 0, result, index, items.Length);
int remaining = array.Length - index;
if (remaining > 0) {
Array.Copy(array, array.Length - remaining, result, result.Length - remaining, remaining);
}
return result;
}
/// <summary>
/// Converts a generic ICollection of T into an array of T.
///
/// If the collection is already an array of T the original collection is returned.
/// </summary>
public static T[] ToArray<T>(ICollection<T> list) {
T[] res = list as T[];
if (res == null) {
res = new T[list.Count];
int i = 0;
foreach (T obj in list) {
res[i++] = obj;
}
}
return res;
}
public static bool ValueEquals<T>(this T[] array, T[] other) {
if (other.Length != array.Length) {
return false;
}
for (int i = 0; i < array.Length; i++) {
if (!Object.Equals(array[i], other[i])) {
return false;
}
}
return true;
}
public static T[] Reverse<T>(this T[] array) {
T[] res = new T[array.Length];
for (int i = 0; i < array.Length; i++) {
res[array.Length - i - 1] = array[i];
}
return res;
}
}
}
|