2009-07-14 21:32:44 +00:00
|
|
|
|
#region CPL License
|
|
|
|
|
/*
|
|
|
|
|
Nuclex Framework
|
2017-01-21 21:33:55 +00:00
|
|
|
|
Copyright (C) 2002-2017 Nuclex Development Labs
|
2009-07-14 21:32:44 +00:00
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the IBM Common Public License as
|
|
|
|
|
published by the IBM Corporation; either version 1.0 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
IBM Common Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the IBM Common Public
|
|
|
|
|
License along with this library
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2009-07-14 20:15:34 +00:00
|
|
|
|
|
|
|
|
|
namespace Nuclex.Support.Collections {
|
|
|
|
|
|
2012-02-29 16:27:43 +00:00
|
|
|
|
partial class Deque<TItem> {
|
2009-07-14 20:15:34 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines the index of the first occurence of the specified item in the deque
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">Item that will be located in the deque</param>
|
|
|
|
|
/// <returns>The index of the item or -1 if it wasn't found</returns>
|
2012-02-29 16:27:43 +00:00
|
|
|
|
public int IndexOf(TItem item) {
|
2009-07-14 20:15:34 +00:00
|
|
|
|
if(this.blocks.Count == 1) { // Only one block to scan?
|
2009-07-14 21:08:10 +00:00
|
|
|
|
int length = this.lastBlockEndIndex - this.firstBlockStartIndex;
|
2012-02-29 16:27:43 +00:00
|
|
|
|
int index = Array.IndexOf<TItem>(
|
2009-07-14 20:15:34 +00:00
|
|
|
|
this.blocks[0], item, this.firstBlockStartIndex, length
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// If we found something, we need to adjust its index so the first item in
|
|
|
|
|
// the deque always appears at index 0 to the user
|
|
|
|
|
if(index != -1) {
|
|
|
|
|
return (index - this.firstBlockStartIndex);
|
|
|
|
|
} else {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
} else { // At least two blocks exist
|
|
|
|
|
|
|
|
|
|
// Scan the first block for the item and if found, return the index
|
|
|
|
|
int length = this.blockSize - this.firstBlockStartIndex;
|
2012-02-29 16:27:43 +00:00
|
|
|
|
int index = Array.IndexOf<TItem>(
|
2009-07-14 20:15:34 +00:00
|
|
|
|
this.blocks[0], item, this.firstBlockStartIndex, length
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// If we found something, we need to adjust its index
|
|
|
|
|
if(index != -1) {
|
|
|
|
|
return (index - this.firstBlockStartIndex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int lastBlock = this.blocks.Count - 1;
|
|
|
|
|
for(int tempIndex = 1; tempIndex < lastBlock; ++tempIndex) {
|
2012-02-29 16:27:43 +00:00
|
|
|
|
index = Array.IndexOf<TItem>(
|
2009-07-14 20:15:34 +00:00
|
|
|
|
this.blocks[tempIndex], item, 0, this.blockSize
|
|
|
|
|
);
|
|
|
|
|
if(index != -1) {
|
|
|
|
|
return (index - this.firstBlockStartIndex + tempIndex * this.blockSize);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Nothing found, continue the search in the
|
2012-02-29 16:27:43 +00:00
|
|
|
|
index = Array.IndexOf<TItem>(
|
2009-07-14 21:08:10 +00:00
|
|
|
|
this.blocks[lastBlock], item, 0, this.lastBlockEndIndex
|
2009-07-14 20:15:34 +00:00
|
|
|
|
);
|
|
|
|
|
if(index == -1) {
|
|
|
|
|
return -1;
|
|
|
|
|
} else {
|
|
|
|
|
return (index - this.firstBlockStartIndex + lastBlock * this.blockSize);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Nuclex.Support.Collections
|