C Programming Trie in C Programming Language (using struct) To represent a Trie data structure in C, you can use a structure and pointers to create the nodes of the Trie.
C Programming Sorting Strings in C In this article, we have explored different ways to sort a string and an array of string in C Programming Language. We have presented C code snippets to illustrate the concepts.
Interview Problems on Array Car Pooling Problem In this article, we have explored the Car Pooling Problem in depth and presented an efficient approach to solve it using the concept of Prefix Sum.
Software Engineering Deployment of Web application using Docker In this article, we will be performing the deployment of an already made application using docker hub.
Algorithms Weighted Median Problem Weighted Median is a measure of central tendency which is better than normal median. In this let us consider a weighted median value ‘wi’ when the elements are sorted such that the total weight of the elements to the left of wi is half of the total weight.