📜  C#|将堆栈复制到阵列

📅  最后修改于: 2021-05-29 16:09:10             🧑  作者: Mango

Stack .CopyTo(T [],Int32)方法用于将Stack 复制到现有的一维数组,该数组从指定的数组索引开始。

特性:

  • Stack 的容量是Stack 可以容纳的元素数量。将元素添加到Stack 时,容量会根据需要通过重新分配自动增加。
  • 如果Count小于Stack 的容量,则Push是O(1)运算。如果需要增加容量以容纳新元素,则Push变为O(n)操作,其中n为Count。 Pop是O(1)运算。
  • 堆栈接受null作为有效值,并允许重复的元素。

句法:

public void CopyTo (T[] array, int arrayIndex);

参数:

例外情况:

  • ArgumentNullException:如果数组为null。
  • ArgumentOutOfRangeException:如果arrayIndex小于零。
  • ArgumentException:源Stack < T >中的元素数大于从arrayIndex到目标数组末尾的可用空间。

下面给出了一些示例,以更好地理解实现:

范例1:

// C# code to Copy the Stack to an Array
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a Stack of strings
        Stack myStack = new Stack();
  
        // Inserting the elements into the Stack
        myStack.Push("Geeks");
        myStack.Push("Geeks Classes");
        myStack.Push("Noida");
        myStack.Push("Data Structures");
        myStack.Push("GeeksforGeeks");
  
        // Creating a string array arr
        string[] arr = new string[myStack.Count];
  
        // Copying the elements of stack into array arr
        myStack.CopyTo(arr, 0);
  
        // Displaying the elements in array arr
        foreach(string str in arr)
        {
            Console.WriteLine(str);
        }
    }
}
输出:
GeeksforGeeks
Data Structures
Noida
Geeks Classes
Geeks

范例2:

// C# code to Copy the Stack to an Array
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a Stack of Integers
        Stack myStack = new Stack();
  
        // Inserting the elements into the Stack
        myStack.Push(2);
        myStack.Push(3);
        myStack.Push(4);
        myStack.Push(5);
        myStack.Push(6);
  
        // Creating an Integer array arr
        int[] arr = new int[myStack.Count];
  
        // Copying the elements of stack into array arr
        myStack.CopyTo(arr, 0);
  
        // Displaying the elements in array arr
        foreach(int i in arr)
        {
            Console.WriteLine(i);
        }
    }
}
输出:
6
5
4
3
2

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.stack-1.copyto?view=netframework-4.7.2