min 함 수 를 포함 하 는 스 택 디자인 (마이크로소프트 면접 100 문제 002)

2518 단어
제목:
스 택 의 데이터 구 조 를 정의 합 니 다. min 함 수 를 추가 하면 스 택 의 최소 요 소 를 얻 을 수 있 습 니 다.요구 함수 min, push 및 pop 의 시간 복잡 도 는 모두 O (1) 입 니 다.
이 문 제 는 먼저 하나의 스 택 구 조 를 실현 해 야 합 니 다. 그 다음 에 모든 스 택 의 요소 안에 value 를 저장 하 는 것 외 에 현재 스 택 의 최소 값 을 저장 해 야 합 니 다. push 요소 가 스 택 에 들 어 갈 때 판단 해 야 합 니 다. 만약 에 push 요소 가 스 택 꼭대기 에 저 장 된 최소 값 보다 작 으 면 새로운 최소 값 은 push 요소 입 니 다. 그렇지 않 으 면 이전 스 택 꼭대기 요소 의 최소 값 을 사용 해 야 합 니 다.
solution
 
 

include "stdio.h"

include "stdlib.h"

//
typedef struct MinStackElement{
int value;
int mini;
} MinStackElement;

typedef struct MinStack{
MinStackElement* data;
int size;//
int top;//
} MinStack;

// ,
MinStack* initialStack(int maxSize){
// ,
MinStack p=(MinStack)malloc(sizeof(MinStack));
p->size=maxSize;
p->top=0;
p->data=(MinStackElement)malloc(sizeof(MinStackElement)maxSize);
printf("initial stack success!!
");
return p;
}

// stackpush ,top index,mini
void stackpush(int value,MinStack *stack){
printf("pushing %d to stack
",value);
if (stack->top>=stack->size){
printf("sorry,the stack is full
");
return;
}

MinStackElement item;
item.value=value;
//item.mini
if (stack->top==0){
    item.mini=item.value;
}else{
    if(item.valuedata[stack->top-1].value)
        item.mini=item.value;
    else
        item.mini=stack->data[stack->top-1].mini;
}
stack->data[stack->top]=item;
stack->top++;

} / / 현재 스 택 의 최소 값 int min (MinStack * stack) {if (stack - > top = = 0) {printf ("the stack is empty!"); return - 1;} else {return stack - > data [stack - > top - 1]. mini;}} 읽 기
int main(){ MinStack *stack=initialStack(10); printf ("the minimal is %d",min(stack)); stackpush(10,stack); printf ("the minimal is %d",min(stack)); stackpush(9,stack); printf ("the minimal is %d",min(stack)); stackpush(8,stack); printf ("the minimal is %d",min(stack)); stackpush(7,stack); printf ("the minimal is %d",min(stack)); stackpush(6,stack); printf ("the minimal is %d",min(stack)); stackpush(8,stack); printf ("the minimal is %d",min(stack)); stackpush(1,stack); printf ("the minimal is %d",min(stack)); return 0; }

좋은 웹페이지 즐겨찾기