Question: Given a line of text, write a regular expression to strip all the HTML tags from it?
Answer:
public static string CleanHTML(string htmlPag ...
Published Questions » Technical Questions
Write a function to find a largest sub-sequence in a given array of integers both positive and negative.
Examples:
{ -100, 1, 2, 3, -20, -20, -20, ...
What is Linked List?
Posted by aleksin
Linked list is a linear collection of Self-Referential class objects, called nodes, connected by reference links. Many people tend to think of it as o ...
Linked lists allow only sequential access to elements O(n) while arrays allow random access O(1). Linked lists requires an extra storage for reference ...
Reverse a Singly Linked List
Posted by aleksin
You are asked to write a function Node Reverse(Node head) which has a pointer to the head element of the linked list as a parameter and need to revers ...
Calculate length of the linked list
Posted by aleksin
This problem can be easily solved by using simple recursion and again creates a basis for solving subset of related coding problems.
Possible soluti ...
Task:“Compute the sum of all the values in the nodes of a single linked list”
The only thing is needed to solve this problem is linked list tr ...
