Skip to content

Just another technical day

Somethingk: Tech Blog

  • Home
  • About

Stack/List Node

Stack/List Node

struct Node
{
    int data;
    Node* next;

    Node(int d){
        data = d;
        next = nullptr;
    }
};

Post navigation

Sequential Search in C++
Binary Tree Node
Boka WordPress Theme By ThemeTim