교재 소개

다음과 같은 자료들이 있다. 무료 교재 소개 https://open.umn.edu/opentextbooks/ http://bigbook.or.kr/ Green Tea Press – Free books by Allen B. Downey Gilbert Strang, Calculus  https://ocw.mit.edu/courses/res-18-001-calculus-fall-2023/pages/textbook/ Open Logic Project https://builds.openlogicproject.org/ Open Logic Text Complete Version (2024-12-01) 이상구, 선형대수 https://ibook.skku.edu/Viewer/LA-Texbook http://matrix.skku.ac.kr/LA/ David Cherney, Tom Denton, Rohit Thomas and Andrew Waldron, Linear Algebra https://www.math.ucdavis.edu/~linear/

Algorithm - 우선순위 큐(Priority queue)

추가필요

Algorithm - 다익스트라 알고리듬(Dijkstra Algorithm)

추가필요 우선순위큐 추가필요

Docs - 빌드 시스템

https://github.com/zhiayang/nabs https://github.com/tsoding/nobuild

Docs - 컴퓨터 과학 스스로 학습하기

https://github.com/minnsane/TeachYourselfCS-KR 독학자를 위한 정리된 사이트

WinAPI - COM in plain C

https://github.com/rubberduck-vba/Rubberduck/wiki/COM-in-plain-C 순수 C로 COM을 구현하는 내용에 대한 사이트

WinAPI 0003 - CreateWindowExW 함수

CreateWindow 함수는 CreateWindowEx 함수의 매크로로 구성되며, 이때 dwExStyle 의 값은 0L이 된다. 따라서 CreateWindowEx 함수만을 알고 있으면 된다. HWND CreateWindowExW(      [in] DWORD dwExStyle,      [in, optional] LPCWSTR lpClassName,      [in, optional] LPCWSTR lpWindowName,      [in] DWORD dwStyle,      [in] int X,      [in] int Y,      [in] int nWidth,      [in] int nHeight,      [in, optional] HWND hWndParent,      [in, optional] HMENU hMenu,      [in, optional] HINSTANCE hInstance,      [in, optional] LPVOID lpParam ); 소스 코드는 다음과 같다. #ifndef UNICODE #define UNICODE #endif #include <windows.h> LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { case WM_DESTROY: PostQuitMessage(0); return 0; case WM_PAINT: { PAINTSTRUCT ps; HDC hdc = BeginPaint(hwnd, ...

WinAPI - 윈도 프로시저 콜백

https://learn.microsoft.com/ko-kr/windows/win32/learnwin32/your-first-windows-program https://learn.microsoft.com/ko-kr/windows/win32/learnwin32/writing-the-window-procedure WinAPI의 가장 기본적인 단위 중 하나는 윈도우입니다. 다음 예제는 윈도우를 생성하고 처리하는 방법을 보여줍니다. #ifndef UNICODE #define UNICODE #endif #include <windows.h> LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine, int nCmdShow) { // Register the window class. const wchar_t CLASS_NAME[] = L"Sample Window Class"; WNDCLASS wc = { }; wc.lpfnWndProc = WindowProc; wc.hInstance = hInstance; wc.lpszClassName = CLASS_NAME; RegisterClass(&wc); // Create the window. HWND hwnd = CreateWindowEx( 0, // Optional window styles. CLASS_NAME, // Window class L"Learn to Program Windows", // Window tex...