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