[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
- 객체
- 태그를 입력해 주세요.
- swift custom camera
- 코드스쿼드
- 만들기
- C++
- ios sprite kit
- TDD
- swift camera 이미지 느림
- UIGraphicsImageRendererFormat
- sprite kit
- ios custom camera capture
- 자료구조
- 스택
- 영화
- Mobile Robot Kinematics
- draw 이미지
- ios
- 스위프트
- custom Camera
- des
- image render
- Swift
- swift sprite kit
- skscene
- string
- QUAD
- SKPhysicsbody
- quadcopter
- slow image
- Total
- Today
- Yesterday