Advertisement
alien_fx_fiend

Binary Tree Visualizer (*Almost Done*)

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