Skip to content

Instantly share code, notes, and snippets.

View SalManRAMc's full-sized avatar
💭
Positively Procrastinating

Salman ElHussini SalManRAMc

💭
Positively Procrastinating
  • 21:43 (UTC -12:00)
View GitHub Profile
@SalManRAMc
SalManRAMc / BredT2.c
Created December 31, 2023 17:52
Code for Printing a Binary Search Tree Vertically
#include "main.h"
/**
* Traverse_Breadth2 - same function with more features.
*
* @root: root of tree
*/
void Traverse_Breadth2(treenode *root)
{
if (root == NULL)