Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keyu-tian/buaa-datastructure-project-solution
[Ranked No. 1🥇] My solution for the course project of Datastructure 2019'Spring @ BUAA (北航数据结构). Plenty of C language tricks, hacks, and optimizations are used for extreme efficiency. *Ranked 1/800* in the efficiency test.
https://github.com/keyu-tian/buaa-datastructure-project-solution
algorithms beihang beihang-university buaa buaaoj c datastructures datastructures-algorithms hashtable string-matching
Last synced: 3 days ago
JSON representation
[Ranked No. 1🥇] My solution for the course project of Datastructure 2019'Spring @ BUAA (北航数据结构). Plenty of C language tricks, hacks, and optimizations are used for extreme efficiency. *Ranked 1/800* in the efficiency test.
- Host: GitHub
- URL: https://github.com/keyu-tian/buaa-datastructure-project-solution
- Owner: keyu-tian
- Created: 2023-11-14T13:50:22.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-25T10:18:38.000Z (10 months ago)
- Last Synced: 2024-01-29T18:52:00.135Z (10 months ago)
- Topics: algorithms, beihang, beihang-university, buaa, buaaoj, c, datastructures, datastructures-algorithms, hashtable, string-matching
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BUAA-datastructure-project-solution
[Ranked No. 1🥇] My solution for the course project of Datastructure 2019'Spring @ BUAA. Plenty of C++ tricks, hacks, and optimizations are used for extreme efficiency. Ranked 1/800 in the efficiency test.## References
- Why use `lea eax,[eax*4 + eax]` can be faster than `imul eax, $100`: latency of each operation on x86: https://gmplib.org/%7Etege/x86-timing.pdf.