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
- 동등성
- eks
- Debezium
- Benchmarks
- Salting
- Software maestro
- Kafka
- Leaderboard
- minreplica
- Helm
- Kubernetes
- Database
- SW 마에스트로
- 스프링부트
- zset
- logback
- spring boot
- docket
- blue-green
- 0 replica
- traceId
- slow query
- MSSQL
- Grafana
- yml
- keda
- propogation
- SW Maestro
- Strimzi
- hammerDB
Archives
- Today
- Total
목록Algorithm (2)
김태오
handling big integers cpp
other than handling big ints with long long, it is possible to use __int128 - can store up to 2^128 https://gcc.gnu.org/onlinedocs/gcc/_005f_005fint128.html
Algorithm
2023. 7. 22. 05:34
Quick declaration of function
struct query { int s, e; lint t; int idx; }; vector quer; sort(all(quer), [&](const query &a, const query &b) { return a.t < b.t; }); just for quick implementation in running custom sort algorithm - can be also used in other forms of implementing quick function
Algorithm
2023. 7. 21. 17:34