This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/4_Silver/3_Silver_Sorting.md

28 lines
656 B
Markdown
Raw Normal View History

2020-06-04 01:42:57 +00:00
---
slug: /silver/sorting
2020-06-04 05:39:49 +00:00
title: "Sorting"
2020-06-04 01:42:57 +00:00
author: Unknown
2020-06-04 05:39:49 +00:00
order: 3
2020-06-05 00:37:02 +00:00
prerequisites:
-
- Silver - Containers
2020-06-04 01:42:57 +00:00
---
2020-06-09 16:57:44 +00:00
+ more practice with ordered map / set?
2020-06-04 05:39:49 +00:00
<!-- END DESCRIPTION -->
2020-06-03 14:17:07 +00:00
2020-06-09 04:01:24 +00:00
- Custom Comparators (prerequisite for basically all silver topics in Java)
2020-06-03 23:03:14 +00:00
- CPH 3
- std::sort / Collections.sort
- coord compress
2020-06-03 14:17:07 +00:00
2020-06-03 23:03:14 +00:00
See 8 of https://www.overleaf.com/project/5e73f65cde1d010001224d8a
2020-06-03 14:17:07 +00:00
2020-06-03 23:03:14 +00:00
See 12 of https://www.overleaf.com/project/5e73f65cde1d010001224d8a
2020-06-04 21:58:53 +00:00
- [Breaking Java Arrays.sort()](https://codeforces.com/blog/entry/4827)
2020-06-08 20:30:23 +00:00
- no longer works, see [this one](https://codeforces.com/contest/1324/submission/73058869) instead
custom comparators