gpt4 book ai didi

java - 我们如何编写一个函数 List multiPop(int k) 来从堆栈中弹出 k 个元素或直到堆栈为空?

转载 作者:行者123 更新时间:2023-12-01 14:12:27 25 4
gpt4 key购买 nike

我正在尝试编写一个从堆栈中弹出 k 个元素的方法。任何帮助,将不胜感激。

This is what I have tried: 
public void multipop(int k) {
List l = nil();
while (true) {
for(int i =0; i < k; i++) {
}

最佳答案

将以下概念翻译成 Java:

create a list to store the popped members in.
while (the stack is not empty and we have to pop more elements) {
add a popped member from the stack to the list
}
return the list.

完成

关于java - 我们如何编写一个函数 List multiPop(int k) 来从堆栈中弹出 k 个元素或直到堆栈为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18391686/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com