#include #include using namespace std; typedef string Elem; class CNode{ Elem e; CNode * next; friend class CLinkedList; }; class CLinkedList{ CNode * cur; public: CLinkedList(); ~CLinkedList(); bool empty() const; void advance(); void add(const Elem& e); void remove(); const Elem& front() const; const Elem& back() const; } CLinkedList::CLinkedList():cur(NULL){} CLinkedList::~CLinkedList(){ whil..
#include #include using namespace std; class StringNode{ string elem; StringNode * next; friend class SLinkedList; //뒤에서 구현할 SLinkedList : 생성자,소멸자 삽입삭제 기능을 제공하는 클래스 }; class SLinkedList{ StringNode * head; public: SLinkedList(); ~SLinkedList(); bool empty() const; const string& front() const; void addFront(const string& e); void removeFront(); }; //head를 NULL로 초기화 SLinkedList::SLinkedList():head..
배열을 사용해 게임 엔트리를 저장한다. 배열은 간단히 데이터의 저장 용도로 많이 사용된다. 배열에 어떤 데이터를 저장할 지 생각해보자. 먼저 점수(score)를 저장하고, 이 점수를 얻은 사람의 이름(name)을 저장한다. //const 등 일부 유형의 데이터는 선언과 동시에 초기화가 필요하다. const 변수에는 값을 할당할 수 없다. 이 문제를 해결하기 위해 초기화 리스트를 사용. #include #include using namespace std; class GameEntry{ public: GameEntry(const string& n="",int s = 0); string getname() const; //const method를 사용해 메소드 안에서는 변수값을 바꿀 수 없음, const met..
- Total
- Today
- Yesterday
- AVB
- automotive
- SOME/IP
- AE
- cuckoo
- Python
- 단순선형회귀
- automotive ethernet
- many-to-many
- PCA
- one-to-many
- json2html
- HTML
- 로지스틱회귀
- problem statement
- porks
- 차량 네트워크
- many-to-one
- 회귀
- 논문 잘 쓰는법
- 딥러닝
- 차량용 이더넷
- AVTP
- 머신러닝
- SVM
- 케라스
- Ethernet
- 이상탐지
- 크로스 엔트로피
- CAN-FD
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |