본문 바로가기

해바

검색하기
해바
프로필사진 Bacha

  • 이야기 상자 (52)
    • QA (6)
      • For Beginners (6)
    • System Programming (15)
    • Python (0)
      • Programmers (0)
    • C, C++ (29)
      • BAEKJOON Online Judge (0)
      • 끄적끄적 (2)
    • Data Structure (0)
    • Artificial Intelligence (0)
    • Game Tips (1)
      • 엘더스크롤5 : 스카이림 (TES V : SKYR.. (1)
    • Blog Setting Tips (1)
    • 일기로그 (0)
      • 일기 (0)
Guestbook
Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
일 월 화 수 목 금 토
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
Tags
  • Zero That Out
  • system programming
  • 4949
  • 해바
  • For Beginners
  • 전자책
  • file IO
  • 2941
  • Parenthesis
  • 백준
  • File 조작
  • 5622
  • c
  • LJESNJAK
  • BAKA
  • The Balance of the World
  • c++
  • Process Communication
  • IT
  • Baekjoon
  • 시스템 프로그래밍
  • 시프
  • 1874
  • QA
  • 균형잡힌 세상
  • 입력 버퍼
  • 브런치
  • 바샤
  • process control
  • 10773
more
Archives
Today
Total
관리 메뉴
  • 글쓰기
  • 방명록
  • RSS
  • 관리

목록10773 (1)

해바

10773) 15. 스택 : 제로(Zero That Out)

문제 https://www.acmicpc.net/problem/10773 불러오는 중입니다... 풀이 1. Linked List Stack 구조를 사용하는 방법 #include "cstdio" class NODE { friend class Stack; private: int m_data; NODE* prev, *next; public: NODE(); NODE(int); }; NODE::NODE() : m_data(0), prev(NULL), next(NULL) {} NODE::NODE(int data) : m_data(data), prev(NULL), next(NULL) {} class Stack { friend NODE; private: int count; NODE* head, *tail; public..

C, C++ 2019. 8. 18. 17:15
Prev 1 Next

Blog is powered by kakao / Designed by Tistory

티스토리툴바