Sudhir sharma has Published 1206 Articles

Print colored message with different fonts and sizes in C

sudhir sharma

sudhir sharma

Updated on 03-Jan-2020 08:05:02

2K+ Views

C/C++ programming language, the user is provided with functionality to customize the output based on the requirement of the user. C/C++ graphics functions are included in graphics.h header file. Using this library you can create different objects, set the color of text, change the font and size of the text ... Read More

Print common characters of two Strings in alphabetical order in C++

sudhir sharma

sudhir sharma

Updated on 03-Jan-2020 08:02:35

595 Views

In this programming problem, we are given two strings. And we have to find all the characters of the string that are common in both the string and we have to print these common characters in alphabetical order. And print ‘NO COMMON CHARACTERS ’ found if no common letters arise. ... Read More

Print Common Nodes in Two Binary Search Trees in C++

sudhir sharma

sudhir sharma

Updated on 03-Jan-2020 07:59:36

169 Views

In this problem, we are given two binary search trees and we have to find the nodes that are common.Binary Tree is a special tree whose every node has at max two child nodes. So, every node is either a leaf node or has one or two child nodes.Example, Here, ... Read More

Print common nodes on path from root (or common ancestors) in C++

sudhir sharma

sudhir sharma

Updated on 03-Jan-2020 07:56:25

86 Views

In this problem, we are given a binary tree and two nodes of the binary tree are defined. And we have to print all the common ancestors of the node i.e. common nodes that occur in the path from traversal from root to the node.Binary Tree is a special tree ... Read More

Print Concatenation of Zig-Zag String in n Rows in C++

sudhir sharma

sudhir sharma

Updated on 03-Jan-2020 07:53:34

305 Views

In this problem, we are given a string that is a sequence of characters. And we are given the length of the zig-zag pattern and we have to print the concatenation string of this zig-zag string in n rows.Let’s see a few examples to understand the concept better, EXAMPLEInput : ... Read More

Print concentric rectangular pattern in a 2d matrix in C++

sudhir sharma

sudhir sharma

Updated on 03-Jan-2020 07:50:37

643 Views

In this problem, we have to print a rectangular pattern in a 2D matrix in such a way that they are concentric to each other.Let’s take an example to understand this problem better, For n=4 is :    4 4 4 4 4 4 4    4 3 3 3 ... Read More

Print consecutive characters together in a line in C++

sudhir sharma

sudhir sharma

Updated on 03-Jan-2020 07:47:02

198 Views

In this problem, we are given a string of characters and we have to print the same string in such a way that if two or more characters are consecutive then print them together in a single line otherwise print them in different lines i.e. with a line break.Let’s take ... Read More

Print cousins of a given node in Binary Treein C++

sudhir sharma

sudhir sharma

Updated on 03-Jan-2020 07:42:50

167 Views

Binary Tree is a special tree whose every node has at max two child nodes. So, every node is either a leaf node or has one or two child nodes.Example, In this problem, we are given a binary tree and we have a node of the tree and we have ... Read More

Print digit’s position to be removed to make a number divisible by 6 in C++

sudhir sharma

sudhir sharma

Updated on 03-Jan-2020 07:32:06

136 Views

In this problem, we are given number and we have to remove more digit from the number. So that the new number formed after removal is divisible by 6.Let’s take an example to learn the concept better −Input : 1324 Output : 4Explanation − on removing the 4th number we ... Read More

Print direction of moves such that you stay within the [-k, +k] boundary in C++

sudhir sharma

sudhir sharma

Updated on 03-Jan-2020 07:27:50

127 Views

In this problem, we have to find a valid way to move positive direction or negative direction in such a way that we stay within a certain limit that is provided by the user.Here, We are given a certain maximum limit K, which is the maximum value to which we ... Read More

Advertisements