What can be used in Java in place of ordered_set in C++?
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | turmax | 3559 |
| 6 | tourist | 3541 |
| 7 | strapple | 3515 |
| 8 | ksun48 | 3461 |
| 9 | dXqwq | 3436 |
| 10 | Otomachi_Una | 3413 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | adamant | 153 |
| 3 | Um_nik | 147 |
| 3 | Proof_by_QED | 147 |
| 5 | Dominater069 | 145 |
| 6 | errorgorn | 142 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | TheScrasse | 134 |
| 10 | chromate00 | 133 |
What can be used in Java in place of ordered_set in C++?
| Name |
|---|



C++ can be used in place of Java
Are u sure it will work?
How about TreeSet?
I have to find the Kth largest elememt. Is there any way to find it using TreeSet?
Not really. But you can use O(N) algorithm described in https://www.geeksforgeeks.org/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time/, or use a handwritten binary search tree that for each node keeps the total number of nodes in the corresponding subtree.
I have to find the Kth largest elememt. Is there any way to find it using TreeSet?No efficient way for doing this with stock Java TreeSet / TreeMap. And you made me curious whether there is a way of doing it in C++? I cannot find anything useful based on this API: http://www.cplusplus.com/reference/set/set/
UPDATE: found it, now I see the advantage over Java: https://www.geeksforgeeks.org/ordered-set-gnu-c-pbds/
Yup
Jass_Manak maybe you have some concrete problems where this feature is useful?
Yeah, I have to use that in some problem from the ongoing contest. So, can't tell the exact problem right now.