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