3.1

Topic: Describe how you could use a single array to implement three stacks.

// 情况1fixed division. 数组等分成三份。

If it is ok with simply allocating a fixed amount of space for each stack, we can divide the array in three equal parts. This may mean though that one stack runs out of space, while the others are nearly empty. 如果有额外信息,也可以Stack 1 have more space than stack 2...

 

// 情况2flexible division. 一个栈从头开始,一个从尾开始,一个从中间/三分之一开始,记录1,2top, 3topend,有数据进来,就整体移3. 

1)Define two stacks beginning at the end of the array, growing in opposite directions. The third stack start in the middle of the array. 2) Redefine the push op, when going to overwrite other stack, shift the whole middle stack before pushing. 3) store the top for the first two, store the beginning and the end of the last stack.

public class C3 {
     static int stackSize=100;
     static int[]buffer=new int[stackSize*3];
     // 3 stack pointers to track the top element
     static int[] pointer={-1,-1,-1};
     
     static void push(int stackNum, int value) throws Exception{
    	//有可能容量不够,所以要throws exception
    	 if(pointer[stackNum]+1>=stackSize){
    		 throw new Exception("Out of space");
    	 }
    	 pointer[stackNum]++;
    	 buffer[TopOfStack(stackNum)]=value;
     }
     
     static int pop(int stackNum) throws Exception{
    	 if(pointer[stackNum]==-1){
    		 throw new Exception("Popoing an empty stack");
    	 }
    	int value=buffer[TopOfStack(stackNum)];
    	 buffer[TopOfStack(stackNum)]=0;//pop之后栈顶元素置零
    	 pointer[stackNum]--;
    	 return value;
    	 
     }
     
     static int peek(int stackNum){
    	 return buffer[TopOfStack(stackNum)];
     }
     
     static int TopOfStack(int stackNum){
    	 return stackNum*stackSize+pointer[stackNum];
     }
     
     public static void main(String[] args) throws Exception{
    	push(2, 4);
 		System.out.println("Peek 2: " + peek(2));
 		push(0, 3);
 		push(0, 7);
 		push(0, 5);
 		System.out.println("Peek 0: " + peek(0));
 		pop(0);
 		System.out.println("Peek 0: " + peek(0));
 		pop(0);
 		System.out.println("Peek 0: " + peek(0));
     }
}
// 结果
Peek 2: 4
Peek 0: 5
Peek 0: 7
Peek 0: 3



 

python023基于Python旅游景点推荐系统带vue前后端分离毕业源码案例设计 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值