Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any cool project written in STL?

Tags:

c++

stl

I want to learn STL by quick browsing of real project source.

Where can I find a high quality project that uses STL?

like image 666
Sam Liao Avatar asked Nov 27 '22 01:11

Sam Liao


2 Answers

Notepad++: pure Win32 + STL only!

Based on a powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.

like image 106
Khaled Alshaya Avatar answered Dec 19 '22 18:12

Khaled Alshaya


Note that STL is partly included in the C++ standard itself. That makes most of the products listed at http://www.research.att.com/~bs/applications.html interesting. The list is a mix of proprietary and open source projects.

like image 34
Vijay Mathew Avatar answered Dec 19 '22 18:12

Vijay Mathew