Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- rxswift
- 동시성프로그래밍
- 애플인텔리전스
- AI
- Content Hugging priority
- 자료구조
- 클린아키텍처
- 알고리즘
- 오토레이아웃
- 백준
- LLM
- swift
- gitlab
- 동작과정
- OperationQueue
- swift알고리즘
- cleanarchitecture
- RxSwift요약
- CICD
- CI/CD
- RxCocoa
- Union-Find
- Autolayout
- apple intelligence
- Content Compression Resistance priority
- ai expo
- IOS
- ReactiveX
- mvvm
- gitlabci/cd
Archives
- Today
- Total
목록큐 (1)
JosephCha의 개발일지
큐
정의 줄을 서는 행위와 유사 가장 먼저 넣은 데이터를 가장 먼저 꺼낼 수 있는 구조 음식점에서 가장 먼저 줄을 선 사람이 제일 먼저 음식점에 입장하는 것과 동일 참고 Enqueue: 큐에 데이터를 넣는 기능 Dequeue: 큐에서 데이터를 꺼내는 기능 struct Queue { private var queue: [T?] = [] private var head: Int = 0 public var count: Int { return queue.count } public var isEmpty: Bool { return queue.isEmpty } public mutating func enqueue(_ element: T) { queue.append(element) } public mutating func de..
알고리즘 및 자료구조
2022. 4. 20. 16:55