码迷,mamicode.com
首页 > 其他好文 > 详细

CC150 3.1

时间:2014-11-24 12:09:27      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:interview

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


3 stacks? separate the array into 3 sections.

Use 3 index.

push(int stack, T t)
{
  validateStackNum(stack); // Validate(stack >= 0 && stack < 2);
  
  int pos = stackPos[stack];
  
  check(pos + 1); // if exceeds, enlarge the array.
  
  array[pos + 1] = t;
  stackPos[stack] = pos + 1;
}

T peek(int stack)
{
  validateStackNum(stack);
  
  return stackPos[stack];  
}

T poll(int stack)
{
  validateStackNum(stack);
  
  int pos = stackPos[stack];
  T t = array[pos];
  stackPos[stack] = pos - 1;
}

int[] stackPos;


CC150 3.1

标签:interview

原文地址:http://7371901.blog.51cto.com/7361901/1581740

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!