Skip to content

Instantly share code, notes, and snippets.

@Bambina-zz
Created March 24, 2017 03:11
Show Gist options
  • Save Bambina-zz/565939dfa9c29c0897ad54710d6be828 to your computer and use it in GitHub Desktop.
Save Bambina-zz/565939dfa9c29c0897ad54710d6be828 to your computer and use it in GitHub Desktop.
【解答2】3.1 1つの配列を使って3つのスタックを実装するにはどのようにすればよいのか述べてください。
import java.util.*;
import org.junit.*;
import static org.junit.Assert.*;
public class TestAdjustableStacks {
@Test
public void testAdjustableStacks(){
AdjustableStack stack = new AdjustableStack();
try {
stack.push(0, 10);
stack.push(1, 20);
stack.push(2, 30);
int v = stack.pop(0);
assertEquals("10", String.valueOf(v));
} catch (Exception e) {
fail();
}
}
}
class StackData {
public int start;
public int pointer;
public int size = 0;
public int capacity;
public StackData(int _start, int _capacity){
start = _start;
pointer = _start - 1;
capacity = _capacity;
}
public boolean isWithinStack(int index, int total_size){
if(start <= index && index < start + capacity){
return true;
} else if(start + capacity > total_size && index < (start + capacity) % total_size){
return true;
}
return false;
}
}
class AdjustableStack {
static int number_of_stacks = 3;
static int default_size = 4;
static int total_size = default_size * number_of_stacks;
static StackData [] stacks = {new StackData(0, default_size),
new StackData(default_size, default_size),
new StackData(default_size * 2, default_size)};
static int [] buffer = new int [total_size];
public static int numberOfElements(){
return stacks[0].size + stacks[1].size + stacks[2].size;
}
public static int nextElement(int index){
if(index + 1 == total_size) return 0;
else return index + 1;
}
public static int previousElement(int index){
if(index == 0) return total_size - 1;
else return index - 1;
}
public static void shift(int stackNum){
StackData stack = stacks[stackNum];
if(stack.size >= stack.capacity){
int nextStep = (stackNum + 1) % number_of_stacks;
shift(nextStep);
stack.capacity++;
}
for(int i=(stack.start+stack.capacity-1)%total_size; stack.isWithinStack(i, total_size); i = previousElement(i)){
buffer[i] = buffer[previousElement(i)];
}
buffer[stack.start] = 0;
stack.start = nextElement(stack.start);
stack.pointer = nextElement(stack.pointer);
stack.capacity--;
}
public static void expand(int stackNum){
shift((stackNum + 1) % number_of_stacks);
stacks[stackNum].capacity++;
}
public static void push(int stackNum, int value) throws Exception {
StackData stack = stacks[stackNum];
if(stack.size >= stack.capacity){
if(numberOfElements() >= total_size){
throw new Exception("Out of space.");
} else {
expand(stackNum);
}
}
stack.size++;
stack.pointer = nextElement(stack.pointer);
buffer[stack.pointer] = value;
}
public static int pop(int stackNum) throws Exception {
StackData stack = stacks[stackNum];
if(stack.size == 0){
throw new Exception("Trying to pop an empty stack.");
}
int value = buffer[stack.pointer];
buffer[stack.pointer] = 0;
stack.pointer = previousElement(stack.pointer);
stack.size--;
return value;
}
public static int peek(int stackNum){
StackData stack = stacks[stackNum];
return buffer[stack.pointer];
}
public static boolean isEmpty(int stackNum){
StackData stack = stacks[stackNum];
return stack.size == 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment