[C++ & 자료구조]배열기반 스택
ArrayBaseStack.h 배열 스택 12345678910111213141516171819202122232425#ifndef __AB_STACK_H__#define __AB_STACK_H__ #define STACK_LEN 100typedef int Data; class ArrayStack{private: Data stackArr[STACK_LEN]; int topIndex; public: ArrayStack() { topIndex = -1; } bool SIsEmpty(); void SPush(Data data); Data SPop(); Data SPeek();}; #endifcs .ArrayBaseStack.cpp 1234567891011121314151617181920212223242526272..
CS/C++ & DataStructure 2016. 11. 18. 11:35
최근에 올라온 글
최근에 달린 댓글
TAG
- 자료구조
- 태그를 입력해 주세요.
- SKPhysicsbody
- slow image
- custom Camera
- C++
- swift camera 이미지 느림
- TDD
- draw 이미지
- des
- ios
- 만들기
- ios custom camera capture
- skscene
- ios sprite kit
- quadcopter
- image render
- Swift
- swift custom camera
- 코드스쿼드
- 객체
- Mobile Robot Kinematics
- 스택
- 영화
- string
- swift sprite kit
- 스위프트
- sprite kit
- QUAD
- UIGraphicsImageRendererFormat
- Total
- Today
- Yesterday