자료구조 vector의 원형 vector라는 자료구조 자체는 이미 워낙에 많이 쓰던 녀석이니, 완벽한 재구현을 위해 원형을 분석. 물론 지금은 C++98에 해당하는 녀석들로만. 생성자(constructor) vector(); vector(const vector& other); explicit vector(const Allocator& alloc); explicit vector(size_type count, const T& value = T(), const Allocator& alloc = Allocator()); template vector(InputIt first, InputIt last, const Allocator& alloc = Allocator()); 1: 기본 생성자. 빈 vector를 기본 ..
You will notice that in this particular subject, a lot of the problems you are asked to solve can be solved by NOT using standard containers and NOT using standard algorithms. However, using those is precisely the goal, and if you do not make every effort to use standard containers and algorithms wherever it’s appropriate, you WILL get a very bad grade, however functional your work may be. Pleas..
env제외 모든 빌트인 커맨드는 PATH환경변수가 unset 되었을때, 대소문자 구분 하는거 (소문자만) cd 할 때 $PWD, $OLDPWD 설정 되는거 exit 엄청 큰 숫자 하면 numberic 에러 나오는거 (가능한 숫자 최대는 2^63-1, 최소는 -(2^64)) exit ‘ 3 ‘ 식으로 공백 들어가는건 에러 안나와야 하는거 cat | cat | cat 했을 때 SIGINT 주면 한번에 다 종료되는거 cp /bin/cat ls 해보고 ls 했을때 $PATH의 ls가 실행되고, 복사한 /bin/cat 이 실행되지 않는 지 /usr/bin/env 실행해봐서 자식 프로세스에 환경 변수 제대로 전달되는지 echo |, cat > 같이 문법 오류 exit 88 | echo $? 했을 때 0 나오는지 ...
Remember: You are coding in C++ now, not in C anymore. Therefore: The following functions are FORBIDDEN, and their use will be punished bya 0, no questions asked: *alloc, *printf and free. You are allowed to use basically everything in the standard library. HOWEVER, it would be smart to try and use the C++-ish versions of the functions you are used to in C, instead of just keeping to what you kn..
CPP Module 00의 ex00가 요구하는 사항들이다. 글자 출력 #include intmain() { std::cout
하위 유형 다형성, 추상 클래스, 인터페이스 모든 exercise에서, 당신의 main은 모든 것을 테스트해야 합니다. 각 클래스의 생성자 및 소멸자에는 무언가 특정한 출력이 있어야 합니다. ex00 간단하고 완벽한 기본 클래스 Animal 작성. Animal 클래스는 1개의 보호된(protected) 특성을 가짐. std::string type; Animal 클래스 Animal 상속 Dog 클래스, Animal 상속 Cat 클래스. Animal 클래스는 type을 비워두거나 아무 값을 지정해도 됨. 모든 클래스는 type 필드에 이름을 입력해야함. 예를 들어서, Dog 클래스의 type는 “Dog” 여야 함. 모든 Animal은 makeSound() 메서드를 사용할 수 있어야 함. 이 메서드는 클래스를..