일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- socket
- 진수변환기
- dictionary
- 콘솔 키보드 이벤트
- 파일입출력
- 소켓프로그래밍
- Kotlin
- background service
- 연결리스트
- vscode
- foreground service
- InfluxDBClient
- Linked List
- dart
- InfluxDB
- 문자열다루기
- 메모리반환
- 문자열 다루기
- Android
- flutter
- C
- UI
- 코틀린
- Mat 변수
- vs code
- 문자열파싱
- ws2_32.lib
- 딕셔너리
- FTP
- 자료구조
- Today
- Total
목록dictionary (2)
무슨 일로 C 하셨습니까?
추가로 필요한 함수를 더 만들어보자 int DICTIONARY_Delete(dictionary* head, char* key) { _dictionary* ptr = head->head; _dictionary* pre = NULL; while (true) { if (ptr == NULL) return false; else if (StringCompare(ptr->key, key) == COMPARE_SAME) break; pre = ptr; ptr = ptr->link; } if (pre == NULL) { free(ptr); head->head = NULL; } else { pre->link = ptr->link; free(ptr); } head->count--; return true; } 삭제 함수는 ..
파이썬을 사용하다보면 은근히 많이 사용되는게 바로 딕셔너리다 key - value 로 값을 접근하고 저장할 수 있다는 점이 상당히 매력적이다 그런 매력적인 자료형을 C에서 사용하지 아니할 수 없다 고로 구현해보자 typedef struct _DICTIONARY { char* key; void* value; struct _DICTIONARY* link; }_dictionary; typedef struct DICTIONARY { int count; struct _DICTIONARY* head; }dictionary; 우선 구조체 부터 만들면 다음과 같다 전체적인 부분은 연결 리스트와 동일하나 value 값으로 문자열 뿐만아니라 숫자 다른 구조체 등 여러 자료형을 동시에 받을 수 있도록 void형 포인터를 사..