-
[자료구조] C/C++ 자료구조 마스터(?)를 위한 요점 정리50 shades of ZZ/C(++) 자료구조 마스터 2023. 9. 26. 22:52728x90728x90
이번 학기 자료구조 수업을 들으며 강의 내용을 정리합니다!
목차는 아래와 같으며 순차적으로 추가될 예정입니다.
모든 내용은 강의자료를 토대로 정리되며, 해당 강의자료는 아래 교재를 기반으로 합니다.
https://product.kyobobook.co.kr/detail/S000003052316
Fundamentals of Data Structures in C | Ellis Horowitz - 교보문고
Fundamentals of Data Structures in C |
product.kyobobook.co.kr
+) 개인 공부용이라 오류가 있을 수 있음
1. Introduction
2023.09.26 - [50 shades of ZZ/C(++) 자료구조 마스터] - [자료구조] 1-1. 포인터 Pointer (C/C++)
[자료구조] 0-1. Introduction - 포인터 Pointer (C/C++)
pointer 포인터 (= pointer variable) 어떤 변수의 메모리 주소를 저장하는 변수 pointer constant : 메모리 주소에 대응하는 값 pointer가 NULL일 경우, 해당 pointer는 아무것도 가리키지 않음을 의미 (실제 값은 0
zziangzzang.tistory.com
2023.09.27 - [50 shades of ZZ/C(++) 자료구조 마스터] - [자료구조] 1-2. 동적 메모리 Dynamic memory (C/C++)
[자료구조] 1-2. 동적 메모리 Dynamic memory (C/C++)
Dynamic memory 동적 메모리 static / dynamic memory sray : pointer constant ( pointer) pary : pointer variable void Pointer_Test(void){ int sary[5]; int *pary = NULL; pary = (int *)malloc(5 * sizeof(int)); } dynamic memory allocation 프로그램 실
zziangzzang.tistory.com
2023.09.27 - [50 shades of ZZ/C(++) 자료구조 마스터] - [자료구조] 1-3. 알고리즘 예시 & 재귀 함수 (C/C++)
[자료구조] 1-3. 알고리즘 예시 & 재귀 함수 (C/C++)
[알고리즘 예시] Selection Sort 선택 정렬 문제 : Sort a set of n ≥ 1 integers in non-decreasing order 방법 : from those integers that are currently unsorted, find the smallest and place it next in the sorted list pseudocode algorithm for(i =
zziangzzang.tistory.com
2. Arrays & Structures
3. Stack & Queue
...
(내용 추가 예정)
728x90728x90'50 shades of ZZ > C(++) 자료구조 마스터' 카테고리의 다른 글
[자료구조] 1-3. 알고리즘 예시 & 재귀 함수 (C/C++) (0) 2023.09.27 [자료구조] 1-2. 동적 메모리 Dynamic memory (C/C++) (1) 2023.09.27 [자료구조] 1-1. 포인터 Pointer (C/C++) (0) 2023.09.26