-
Development on mac may result in the return of sprite images in the incorrect order. For example, your weapon may start off in the firing state and look strange when using it, or the animation of npc'…
-
Should the event queues be turned into std::queue or std::deque or just leave them be?
I'd like to change it but then I'd also like to see how if possible to fix the overflow issue with SDL sending m…
-
The following code causes a segfault:
```c++
std::pmr::deque functions { };
func::function f { [] { } };
functions.push_back(f);
```
However, creating a single `function` with the pmr alloca…
jwt27 updated
3 years ago
-
Hi @rtheunissen.
I use this extension every day, and in our current project, I have been creating wrappers for classes to handle concurrency with OpenSwoole. That's not the point of this, though ;)…
-
std::list is almost always the wrong container to use unless insertion is needed. In a lot of places around the code, a std::list is created, pushed back to, and then iterated over. These should all p…
-
Hi Greg,
Thanks a lot for you work!
I want to share with more optimized version of your function `combine_sentences` from the [tutorial about text splitting](https://github.com/FullStackRetrieva…
-
[문제 링크](https://www.acmicpc.net/problem/14497)
---
📌 TODO
* [x] 풀이
* [x] 정리
-
* 연결 이슈 : https://github.com/hello2jolee/algorithm_python/issues/13
## 위상정렬(그래프 정렬)
* 어떤 일을 하는 순서를 찾는 알고리즘
* 각각의 일의 선후관계가 복잡하게 얽혀있을 때 각각 **일의 선후관계를 유지**하면서 **전체 일의 순서를 짜**는 알고리즘
### 진입차수란?
* …
-
So, I finally got the game to compile and run in Visual Studio, and it runs just fine until I try to shoot stuff. According to the debugger, the deque iterator is not incrementable. I haven't tested t…
-
A program to retrieve the maximum/minimum element of each k sized continuous window of an array in O(n) time complexity. A good example where deque is useful.
I am a GSSOC'21 participant, and I wou…