Endianness is the attribute of a system that indicates whether integers are represented with the most significant byte stored at the lowest address or ...
Search results for public class
Repository pattern is usefult for decoupling entity operations form presentation, which allows easy mocking and unit testing.
“The Repository will ...
How to generate random linked list?
Posted by CMaster
Considering following definition of linked list data structure
class Node
{
public string Data = string.Empty;
...
Stack and Queue interview questions
Posted by CMaster
Stack and Query structures in computing are extremely fundamental and important. Then interviewing I expect candidate to fully understand this data s ...
Write a function which will search a given BST for a specific key and return a Value for the found node
Posted by CMaster
class Node
{
public Node Right;
public Node Left;
public int Key;
public String Value;
}
Write a function which will search a given BST for ...
This is one of the most common interview questions and the key difference is that struct is value type and class is reference type.
Also, there is ...
The interview questions is to write a function Check:
bool Check(string input, List<Parenthesis> par)
Which would check input string and re ...
You are given an N-tree where each node consists of m children nodes and a sibling node:
class Node
{
public Node[] Children;
public Node Siblin ...
