用栈操作构建数组

此博客连接:https://www.cnblogs.com/ping2yingshi/p/13393006.html

用栈操作构建数组

题目链接:https://leetcode-cn.com/problems/build-an-array-with-stack-operations/

给你一个目标数组 target 和一个整数 n。每次迭代,需要从  list = {1,2,3..., n} 中依序读取一个数字。

请使用下述操作来构建目标数组 target :

Push:从 list 中读取一个新元素, 并将其推入数组中。
Pop:删除数组中的最后一个元素。
如果目标数组构建完成,就停止读取更多元素。
题目数据保证目标数组严格递增,并且只包含 1 到 n 之间的数字。

请返回构建目标数组所用的操作序列。

题目数据保证答案是唯一的。

示例 1:

输入:target = [1,3], n = 3
输出:["Push","Push","Pop","Push"]
解释:
读取 1 并自动推入数组 -> [1]
读取 2 并自动推入数组,然后删除它 -> [1]
读取 3 并自动推入数组 -> [1,3]
示例 2:

输入:target = [1,2,3], n = 3
输出:["Push","Push","Push"]
示例 3:

输入:target = [1,2], n = 4
输出:["Push","Push"]
解释:只需要读取前 2 个数字就可以停止。
示例 4:

输入:target = [2,3,4], n = 4
输出:["Push","Pop","Push","Push","Push"]
 

提示:

1 <= target.length <= 100
1 <= target[i] <= 100
1 <= n <= 100
target 是严格递增的

题解:

       思路:

              1.定义一个列表。

              2.从1循环到n。

              3.判断i是否存在在数组中,如果在,则在列表中添加Push,并把数组下标增加一,如果不存在,则在列表中添加Psuh和Pop.

              4.判断示例3的情况,数组中的最后一个数小于n,则把Push添加到列表中,并且结束循环。

代码:

class Solution {
    public List<String> buildArray(int[] target, int n) {
       List <String> list=new ArrayList<>();
       int j=0;
       for(int i=1;i<=n;i++)
       {
           if(target[target.length-1]==i)
           {
                 list.add("Push");
             
                 break;
           }
            
           if(target[j]==i) 
           {
               j++;
               list.add("Push");
           }
           else {
               list.add("Push");
               list.add("Pop");
              
           }
       }
       return list;
    }
}
原文地址:https://www.cnblogs.com/ping2yingshi/p/13393006.html