Skip to content
View hashibk's full-sized avatar

Block or report hashibk

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Popular repositories Loading

  1. Timetable-Analyzer Timetable-Analyzer Public

    This C++ program is designed to manage and display a class timetable. The program reads data from a CSV file containing information about class schedules for different days of the week and then all…

    C++

  2. BST_Subtree_Extractor BST_Subtree_Extractor Public

    This code implements a Binary Search Tree (BST) with functions to insert nodes and extract a subtree based on a given range of values, followed by an in-order traversal to print the extracted subtree.

    C++

  3. BST-Kth-Element-Finder BST-Kth-Element-Finder Public

    This code implements a Binary Search Tree (BST) with functions to find the k-th smallest and k-th largest elements by performing an in-order traversal and storing the nodes in a vector.

    C++

  4. BST_Operations BST_Operations Public

    This code demonstrates various operations on a Binary Search Tree (BST) including insertion, deletion, node updating, and different tree traversals (pre-order, post-order, in-order, and level order).

    C++

  5. CheckConsecutiveSum CheckConsecutiveSum Public

    The code is designed to check if a given number can be expressed as a sum of consecutive positive integers starting from 1. If it can, it prints the sequence that adds up to the number. If not, it …

    C++

  6. CountingSort CountingSort Public

    This C++ program implements the Counting Sort algorithm. It reads a list of integers from the user, counts the occurrences of each integer, and then sorts the integers in ascending order using the …

    C++