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
- docket
- hammerDB
- propogation
- keda
- 동등성
- MSSQL
- slow query
- spring boot
- SW 마에스트로
- Leaderboard
- traceId
- Helm
- SW Maestro
- blue-green
- 0 replica
- 스프링부트
- Salting
- minreplica
- Software maestro
- Benchmarks
- Database
- Kubernetes
- Debezium
- zset
- Grafana
- logback
- Kafka
- yml
- eks
- Strimzi
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