Skip to content

Instantly share code, notes, and snippets.

View 2eungwoo's full-sized avatar
πŸ’­
πŸ«¨πŸžβ˜•πŸ™‚

Seungwoo Lee 2eungwoo

πŸ’­
πŸ«¨πŸžβ˜•πŸ™‚
View GitHub Profile
@2eungwoo
2eungwoo / I'm a night πŸ¦‰
Last active October 16, 2025 01:00
I'm a night πŸ¦‰
🌞 Morning 53 commits β–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 4.6%
πŸŒ† Daytime 453 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Žβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 39.6%
πŸŒƒ Evening 556 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 48.6%
πŸŒ™ Night 81 commits β–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 7.1%
#include <Windows.h>
#include <iostream>
enum { _Preorder = 1, _Inorder, _Postorder };
template <typename T>
class Node {
public:
T key;