[C++ & 자료구조]리스트기반의 스택
123456789101112131415161718192021222324252627282930313233#ifndef LISTBASESTACK_H#define LISTBASESTACK_H typedef int LData; class Node{private: LData data;public: Node *next; Node(LData data):data(data){} LData getData(){return data;}}; class ListStack{private: Node *head;public: ListStack() { head = nullptr; } bool SIsEmpty(); void SPush(LData data); LData SPop(); LData SPeek();};#endif // LISTB..
CS/C++ & DataStructure 2016. 11. 18. 16:04
최근에 올라온 글
최근에 달린 댓글
TAG
- quadcopter
- TDD
- ios custom camera capture
- skscene
- swift custom camera
- draw 이미지
- ios sprite kit
- SKPhysicsbody
- sprite kit
- Swift
- 영화
- QUAD
- 자료구조
- 코드스쿼드
- 만들기
- swift sprite kit
- string
- custom Camera
- UIGraphicsImageRendererFormat
- des
- swift camera 이미지 느림
- image render
- 스위프트
- 객체
- 스택
- ios
- C++
- 태그를 입력해 주세요.
- Mobile Robot Kinematics
- slow image
- Total
- Today
- Yesterday