Advertisement
alien_fx_fiend

Binary Tree Visualizer (Win32 GUI) *FINAL RELEASE*

Nov 3rd, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 12.16 KB | Source Code | 0 0
  1. #include <windows.h>
  2. #include <windowsx.h>  // Add this line
  3. #include <commctrl.h>
  4. #include <string>
  5. #include <vector>
  6. #include <algorithm>  // Add this at the top with other includes
  7. #include <functional>
  8. #include <ctime>    // for time()
  9. #include <cstdlib>  // for rand() and srand()
  10. #include <random>
  11. #include <sstream>
  12. #include <iostream>
  13. #include <richedit.h> // Include for Rich Edit control
  14. #include <shellapi.h>
  15.  
  16. #pragma comment(lib, "Psapi.lib")
  17. #pragma comment(lib, "comctl32.lib") // Link with the common controls library
  18. //#pragma comment(lib, "riched32.lib")  // Link with the rich edit library
  19. #pragma comment(lib, "Shell32.lib")
  20.  
  21. // Structure for a binary tree node
  22. struct Node {
  23.     int data;
  24.     Node* left;
  25.     Node* right;
  26.  
  27.     Node(int val) : data(val), left(nullptr), right(nullptr) {}
  28. };
  29.  
  30. // Function to insert a new node into the binary tree
  31. Node* insert(Node* root, int val) {
  32.     if (!root) {
  33.         return new Node(val);
  34.     }
  35.  
  36.     if (val < root->data) {
  37.         root->left = insert(root->left, val);
  38.     }
  39.     else {
  40.         root->right = insert(root->right, val);
  41.     }
  42.     return root;
  43. }
  44.  
  45.  
  46. // Helper function to get the height of the tree
  47. // Helper function to get the height of the tree
  48. int getHeight(Node* root) {
  49.     if (!root) return 0;
  50.     return 1 + max(getHeight(root->left), getHeight(root->right));
  51. }
  52.  
  53. // Helper function to add padding
  54. std::string getPadding(int level) {
  55.     return std::string(level * 6, ' ');
  56. }
  57.  
  58. std::string getListString(Node* root, std::string prefix = "") {
  59.     if (!root) return "";
  60.  
  61.     std::string result = prefix + "|_ " + std::to_string(root->data) + "\r\n";
  62.  
  63.     if (root->left) {
  64.         bool hasRight = (root->right != nullptr);
  65.         std::string newPrefix = prefix + (hasRight ? "|  " : "   ");
  66.         result += getListString(root->left, newPrefix);
  67.     }
  68.  
  69.     if (root->right) {
  70.         std::string newPrefix = prefix + "   ";
  71.         result += getListString(root->right, newPrefix);
  72.     }
  73.  
  74.     return result;
  75. }
  76.  
  77. // Modified getTreeString function with correct lambda capture
  78. std::string getTreeString(Node* root) {
  79.     if (!root) return "";
  80.  
  81.     std::vector<std::string> levels;
  82.     int maxLevelWidth = 0;
  83.  
  84.     std::function<void(Node*, int, int)> traverse =
  85.         [&](Node* node, int depth, int xOffset) {
  86.         if (!node) return;
  87.  
  88.         while (levels.size() <= depth) {
  89.             levels.push_back("");
  90.         }
  91.  
  92.         int dataWidth = std::to_string(node->data).length();
  93.         int centerX = xOffset + dataWidth / 2;
  94.  
  95.         levels[depth] += std::string(centerX - levels[depth].length(), ' ') + std::to_string(node->data);
  96.  
  97.         maxLevelWidth = (maxLevelWidth > levels[depth].length()) ? maxLevelWidth : (int)levels[depth].length();
  98.  
  99.         if (node->left || node->right) {
  100.             int spacing = 3; // Reduced spacing between parent and children
  101.  
  102.             // Calculate child offsets for tighter spacing
  103.             int leftChildOffset = xOffset - spacing;     // Closer to the "/"
  104.             int rightChildOffset = xOffset + dataWidth + spacing - 1; // Closer to the "\"
  105.  
  106.  
  107.             if (node->left) {
  108.                 while (levels.size() <= depth + 1) {
  109.                     levels.push_back("");
  110.                 }
  111.                 levels[depth + 1] += std::string(centerX - 1 - levels[depth + 1].length(), ' ') + "/";
  112.                 traverse(node->left, depth + 2, leftChildOffset);
  113.             }
  114.  
  115.             if (node->right) {
  116.                 while (levels.size() <= depth + 1) {
  117.                     levels.push_back("");
  118.                 }
  119.                 levels[depth + 1] += std::string(centerX + 1 - levels[depth + 1].length(), ' ') + "\\";
  120.                 traverse(node->right, depth + 2, rightChildOffset);
  121.             }
  122.         }
  123.     };
  124.  
  125.     traverse(root, 0, 20); // Smaller initial offset to move the tree left
  126.  
  127.     std::string result;
  128.     for (const auto& level : levels) {
  129.         result += level + std::string(maxLevelWidth - level.length(), ' ') + "\r\n";
  130.     }
  131.     return result;
  132. }
  133.  
  134.  
  135. LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
  136.  
  137. int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, PWSTR pCmdLine, int nCmdShow) {
  138.  
  139.     const wchar_t CLASS_NAME[] = L"BinaryTreeVisualizer";
  140.  
  141.     WNDCLASS wc = { };
  142.  
  143.     wc.lpfnWndProc = WindowProc;
  144.     wc.hInstance = hInstance;
  145.     wc.lpszClassName = CLASS_NAME;
  146.  
  147.     RegisterClass(&wc);
  148.  
  149.     HWND hwnd = CreateWindowEx(
  150.         0,                              // Optional window styles.
  151.         CLASS_NAME,                     // Window class
  152.         L"Binary Tree Visualizer",    // Window text
  153.         WS_OVERLAPPEDWINDOW,            // Window style
  154.  
  155.         CW_USEDEFAULT, CW_USEDEFAULT, 550, 400,
  156.  
  157.         NULL,       // Parent window    
  158.         NULL,       // Menu
  159.         hInstance,  // Instance handle
  160.         NULL        // Additional application data
  161.     );
  162.  
  163.     if (hwnd == NULL) {
  164.         return 0;
  165.     }
  166.  
  167.     ShowWindow(hwnd, nCmdShow);
  168.  
  169.     // Run the message loop.
  170.     MSG msg = { };
  171.     while (GetMessage(&msg, NULL, 0, 0)) {
  172.         TranslateMessage(&msg);
  173.         DispatchMessage(&msg);
  174.     }
  175.  
  176.     return 0;
  177. }
  178.  
  179. LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
  180.     static HWND hEdit, hDisplay, hTreeViewRadio, hListViewRadio, hGenerateButton;
  181.     static Node* root = nullptr;
  182.  
  183.     switch (uMsg) {
  184.     case WM_CREATE: {
  185.         // Create Input Field
  186.         hEdit = CreateWindowEx(WS_EX_CLIENTEDGE, L"EDIT", L"",
  187.             WS_CHILD | WS_VISIBLE | WS_BORDER,
  188.             10, 10, 100, 20, hwnd, NULL, NULL, NULL);
  189.  
  190.         // Create multiline Edit control for display
  191.             // Create display Edit control with proper styles for newlines
  192.         hDisplay = CreateWindowEx(WS_EX_CLIENTEDGE, L"EDIT", L"",
  193.             WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_HSCROLL |
  194.             ES_MULTILINE | ES_AUTOVSCROLL | ES_AUTOHSCROLL | ES_READONLY | ES_LEFT,
  195.             10, 40, 510, 300, hwnd, NULL, NULL, NULL);
  196.  
  197.         // Radio Buttons
  198.         hTreeViewRadio = CreateWindowEx(0, L"BUTTON", L"Tree View",
  199.             WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON | WS_GROUP,
  200.             120, 10, 100, 20, hwnd, (HMENU)1, NULL, NULL);
  201.  
  202.         hListViewRadio = CreateWindowEx(0, L"BUTTON", L"List View",
  203.             WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON,
  204.             230, 10, 100, 20, hwnd, (HMENU)2, NULL, NULL);
  205.  
  206.         // Generate Button
  207.         hGenerateButton = CreateWindowEx(0, L"BUTTON", L"Generate Tree",
  208.             WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON,
  209.             340, 10, 100, 20, hwnd, (HMENU)3, NULL, NULL);
  210.  
  211.         Button_SetCheck(hTreeViewRadio, BST_CHECKED);
  212.  
  213.         // Set monospace font
  214.             // Set monospace font for better tree display
  215.         HFONT hFont = CreateFont(16, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE,
  216.             DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
  217.             DEFAULT_QUALITY, FIXED_PITCH | FF_MODERN, L"Consolas");
  218.  
  219.         SendMessage(hDisplay, WM_SETFONT, (WPARAM)hFont, TRUE);
  220.  
  221.         // Set tab stops for the display Edit control (optional)
  222.         DWORD tabStops = 16; // in dialog units
  223.         SendMessage(hDisplay, EM_SETTABSTOPS, 1, (LPARAM)&tabStops);
  224.  
  225.         // Set text alignment to center
  226.         //SendMessage(hDisplay, EM_SETALIGNMENT, ES_CENTER, 0);
  227.  
  228.         break;
  229.     }
  230.  
  231.     case WM_COMMAND:
  232.         if (LOWORD(wParam) == 3) { // Generate button clicked
  233.             wchar_t buffer[256];
  234.             GetWindowText(hEdit, buffer, 256);
  235.  
  236.             wchar_t* endptr;
  237.             long numNodes = std::wcstol(buffer, &endptr, 10);
  238.  
  239.             if (*endptr == L'\0' && numNodes > 0 && numNodes <= 100) {
  240.                 delete root;
  241.                 root = nullptr;
  242.  
  243.                 std::vector<int> numbers(numNodes);
  244.                 for (int i = 0; i < numNodes; ++i) {
  245.                     numbers[i] = i + 1;
  246.                 }
  247.                 std::random_device rd;
  248.                 std::mt19937 g(rd());
  249.                 std::shuffle(numbers.begin(), numbers.end(), g);
  250.  
  251.                 for (int num : numbers) {
  252.                     root = insert(root, num);
  253.                 }
  254.  
  255.                 std::string treeString;
  256.                 try {
  257.                     if (Button_GetCheck(hTreeViewRadio) == BST_CHECKED) {
  258.                         treeString = getTreeString(root);
  259.                         std::string::size_type pos = 0;
  260.                         while ((pos = treeString.find('\n', pos)) != std::string::npos) {
  261.                             treeString.replace(pos, 1, "\r\n");
  262.                             pos += 2;
  263.                         }
  264.                     }
  265.                     else {
  266.                         treeString = getListString(root);
  267.                     }
  268.  
  269.                     int size_needed = MultiByteToWideChar(CP_UTF8, 0, treeString.c_str(), -1, NULL, 0);
  270.                     if (size_needed == 0) {
  271.                         OutputDebugString(L"MultiByteToWideChar failed\n");
  272.                         break;
  273.                     }
  274.  
  275.                     std::wstring wideStr(size_needed - 1, 0);
  276.                     int converted_chars = MultiByteToWideChar(CP_UTF8, 0, treeString.c_str(), -1, &wideStr[0], size_needed);
  277.                     if (converted_chars == 0) {
  278.                         OutputDebugString(L"MultiByteToWideChar failed\n");
  279.                         break;
  280.                     }
  281.  
  282.                     SetWindowText(hDisplay, wideStr.c_str());
  283.  
  284.                     LONG_PTR style = GetWindowLongPtr(hDisplay, GWL_STYLE);
  285.                     style |= ES_MULTILINE | ES_AUTOVSCROLL;
  286.                     SetWindowLongPtr(hDisplay, GWL_STYLE, style);
  287.  
  288.                     SendMessage(hDisplay, WM_VSCROLL, SB_TOP, 0);
  289.                     SendMessage(hDisplay, EM_SETSEL, 0, 0);
  290.                     SendMessage(hDisplay, EM_SCROLLCARET, 0, 0);
  291.                 }
  292.                 catch (const std::exception& e) {
  293.                     std::string error = "Exception: ";
  294.                     error += e.what();
  295.                     OutputDebugStringA(error.c_str());
  296.                 }
  297.             }
  298.             else {
  299.                 MessageBox(hwnd, L"Please enter a number between 1 and 100.", L"Invalid Input", MB_OK | MB_ICONWARNING);
  300.             }
  301.         }
  302.         else if (LOWORD(wParam) == 1 || LOWORD(wParam) == 2) {  // Radio button handling
  303.             if (root != nullptr) {
  304.                 std::string treeString;
  305.                 if (Button_GetCheck(hTreeViewRadio) == BST_CHECKED) {
  306.                     treeString = getTreeString(root);
  307.                     std::string::size_type pos = 0;
  308.                     while ((pos = treeString.find('\n', pos)) != std::string::npos) {
  309.                         treeString.replace(pos, 1, "\r\n");
  310.                         pos += 2;
  311.                     }
  312.                 }
  313.                 else {
  314.                     treeString = getListString(root);
  315.                 }
  316.  
  317.                 int size_needed = MultiByteToWideChar(CP_UTF8, 0, treeString.c_str(), -1, NULL, 0);
  318.                 if (size_needed == 0) {
  319.                     OutputDebugString(L"MultiByteToWideChar failed (Radio)\n");
  320.                     break;
  321.                 }
  322.                 std::wstring wideStr(size_needed - 1, 0);
  323.                 int converted = MultiByteToWideChar(CP_UTF8, 0, treeString.c_str(), -1, &wideStr[0], size_needed);
  324.                 if (converted == 0) {
  325.                     OutputDebugString(L"MultiByteToWideChar failed (Radio)\n");
  326.                     break;
  327.                 }
  328.  
  329.                 SetWindowText(hDisplay, wideStr.c_str());
  330.  
  331.                 LONG_PTR style = GetWindowLongPtr(hDisplay, GWL_STYLE);
  332.                 style |= ES_MULTILINE | ES_AUTOVSCROLL;
  333.                 SetWindowLongPtr(hDisplay, GWL_STYLE, style);
  334.  
  335.                 SendMessage(hDisplay, WM_VSCROLL, SB_TOP, 0);
  336.                 SendMessage(hDisplay, EM_SETSEL, 0, 0);
  337.                 SendMessage(hDisplay, EM_SCROLLCARET, 0, 0);
  338.             }
  339.         }
  340.         break;
  341.  
  342.     case WM_DESTROY:
  343.         delete root; // Clean up
  344.         PostQuitMessage(0);
  345.         return 0;
  346.     }
  347.     return DefWindowProc(hwnd, uMsg, wParam, lParam);
  348. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement