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..
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..
123456789float a;int b;double c;char d; printf("%f",a);printf("%d",b);printf("%lf",c);printf("%c",d);cs 알고리즘문제 풀떄 입출력이 중요하다는것을 알았다.c에서 사용되는 printf자료형별 서식문자열이다.scanf에서도 동일한 매칭으로 사용된다. *정수형 - 정수(integer)란 부호는 있지만 소수점 이하를 표현하지 못하는 수.int - 4바이트 (부호 있음) short int - 2바이트 (부호 있음)long int - 4바이트(부호 있음)unsigned int - 4바이트(부호없음)unsigned short int - 2바이트(부호없음) *실수형 - 실수(Real Number)란 소수점 이하를 가지는 수이며 정수보다는 ..
기존에 CLinkedList.c 와 CLinkedList.h를 이용하여스택을 구현해보았다. (*여기서 SPush할때 데이터를 머리에 추가가아니라 꼬리에 추가 CLinkedList::LInsert(data);를 하면 큐 구조가 되는거 같음) ListBaseStack.h12345678910111213141516171819#ifndef LISTBASESTACK_H#define LISTBASESTACK_H #include "Node.h"#include "CLinkedList.h" class ListStack : public CLinkedList{private: Node *tail;public: bool SIsEmpty(); void SPush(LData data); LData SPop(); LData Peek(..
달라진건 거의 없다.Node.h는 바뀐게 없음 CLinkedList.h123456789101112131415161718192021222324#ifndef CLINKEDLIST_H#define CLINKEDLIST_H #include"Node.h" class CLinkedList{private: Node *tail; Node *cur; Node *before; int numOfData; public: CLinkedList(); void LInsert(LData data); //꼬리에 노드를 추가 void LInsertFront(LData data); //머리에 노드를 추가 bool LFirst(LData *pdata); bool LNext(LData *pdata); LData LRemove(); int L..
- Mobile Robot Kinematics
- skscene
- 영화
- 스위프트
- 객체
- TDD
- 코드스쿼드
- custom Camera
- 스택
- swift sprite kit
- 만들기
- C++
- ios sprite kit
- sprite kit
- swift custom camera
- Swift
- draw 이미지
- 태그를 입력해 주세요.
- slow image
- ios
- 자료구조
- des
- image render
- string
- ios custom camera capture
- UIGraphicsImageRendererFormat
- swift camera 이미지 느림
- SKPhysicsbody
- QUAD
- quadcopter
- Total
- Today
- Yesterday