Data Structure

    [Data Structure] ArrayList(base on Point)

    memobishil.tistory.com/5 [Data Structure] ArrayList 자료구조 연습용 배열에 속성 몇개 붙여서 구조체로 만든뒤 구조체용 함수 몇개 만들어봄 ArrayList.h #ifndef __ARRAY_LIST_H__ #define __ARRAY_LIST_H__ #include /* ArrayList 정의 */ #define LIST_LEN 100 t.. memobishil.tistory.com 이전에 구현했던 ArrayList 는 int 형 배열에 값을 넣어서 동작함 이번에는 Point 라는 구조체를 만들고 구조체의 주소값을 배열에 넣어서 동작하도록 함 Point.h #ifndef __POINT_H__ #define __POINT_H__ #include typedef stru..

    [Data Structure] ArrayList

    자료구조 연습용 배열에 속성 몇개 붙여서 구조체로 만든뒤 구조체용 함수 몇개 만들어봄 ArrayList.h #ifndef __ARRAY_LIST_H__ #define __ARRAY_LIST_H__ #include /* ArrayList 정의 */ #define LIST_LEN 100 typedef int LData; typedef struct __ArrayList { /* data */ LData arr[LIST_LEN]; int numOfData; int curPosition; } ArrayList; /* ArrayList 관련 연산들 */ bool ArrL_Init(ArrayList *pArrList); bool ArrL_Insert(ArrayList *pArrList, LData data); boo..