The speed of information depends on the bandwidth of the channel. Bandwidth is the property of a medium or channel
Author: Sushma Rao
What is Bandwidth?
Bandwidth is related to the maximum speed of information transfer across a channel. It is the property of the channel.
Fold Expressions a C++17 feature
I would like to give a simple tutorial on Fold Expression, a feature in C++17 . A fold expression reduces
Nested Namespace and __has_include in C++17
I would like to give a simple tutorial on nested namespace and __has_include features in the C++17. Nested namespace or
Minimum cost to connect Ropes
Find the minimum cost to connect ropes in the following scenario. Given n ropes of different lengths, we need to connect these
Template Argument Deduction in C++17
Template Argument deduction is the ability of the template class to automatically deduce the type without specifying it. In order
Structured Bindings
Direct Initialization-Tutorial The direct initialization of the variables can be done using the keyword auto in C++17. In this section,
Practical C++ 17 features
I am going to write about the practical C++17 features and how to use them in our day to day
Colorful numbers Algorithm in C++
Objective: Algorithm for colorful numbers in c++Given a number, find out whether its colorful or not. Colorful Number: When in a given
Bracket matching using stack
Bracket matching using stack. A bracket is considered to be any one of the following characters: (, ), {, }, [, or ]. Two brackets are