코딩Coding/알고리즘♡Algorithm♡
-
자료구조)C++❤ 큐(Queue) 와 원형큐(Circular Queue)개념과 구현코딩Coding/알고리즘♡Algorithm♡ 2022. 8. 16. 13:36
https://reakwon.tistory.com/30 [자료구조] 큐(Queue)와 원형큐(Circular Queue) 개념과 구현 큐(Queue) 스택과 양대산맥인 큐는 스택과 반대의 성격을 지닌 녀석입니다. 스택이 후입선출(Last In First Out)방식이었다면 큐는 선입선출(First In First Out)방식이 되지요. 스택과 큐는 컴퓨터 과학에 reakwon.tistory.com
-
Rust)quick sort algorithm -rayon을 활용한 A data parallelism library코딩Coding/알고리즘♡Algorithm♡ 2022. 4. 26. 14:21
This can actually be done without any code duplication using traits, as you can see from the demo code. (If you’re curious, I explain the idea in an appendix below.) demo code https://github.com/nikomatsakis/rayon/blob/22f04aee0e12b31e029ec669299802d6e2f86bf6/demo/quicksort/src/main.rs GitHub - nikomatsakis/rayon: Rayon: A data parallelism library for Rust Rayon: A data parallelism library for R..