head
-
자료구조: Linked List 구현하기 (feat. c++)알고리즘/자료구조 2021. 4. 16. 15:12
Characteristic: - MyList class is a Linked List class with insertion to head and insertion to tail Operations: - insert_to_head - insert_to_tail - first - next #include #include using namespace std; typedef char ListElementType; class MyList { public: MyList(); ~MyList(); void insert_to_head(const ListElementType& elem); void insert_to_tail(const ListElementType& elem); bool first(ListElementTyp..
-
리눅스 기초 명령어2 (head, tail, split)리눅스 2021. 1. 8. 02:01
1. seq 100 10 160 100부터 시작해서 160까지 10간격으로 숫자 출력 2. mv a b a를 b에 덮어쓰기 3. head a a파일을 위에서부터 10줄 보여준다. 원래는 head -n 10 a가 생략된것 (디폴트값이 10) 4. head -n -10 a 마이너스의 경우 뒤에서부터 열줄 잘라낸다. 즉 뒤의 열줄을 제외하고 출력 5. head -n 5 a b a파일과 b파일을 위에서부터 5줄 출력 6. head -n 5 a b -q header를 제외하고 출력 (q는 quiet) 7. tail -n 10 a a파일을 뒤에서부터 10줄 보여준다. (디폴트값이 -10) (-가 생략되어 있으며 +로 하면 그 값부터 끝까지 보여준다) 8. tail -f a a파일의 변화를 모니터링한다. (다른 터미..