Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.