coderz.py

Keep Coding Keep Cheering!

Mule 4: Multipart/form-data in HTTP Request Connector

Multipart/Form-Data service using the HTTP Request connector in Mule 4

May 24, 2023 | Mule 4 | No comments

Mule 4: HTTP request connector

the HTTP Request connector is a powerful component that allows you to send HTTP requests and receive responses from external systems or APIs

May 23, 2023 | Mule 4 | No comments

Stack in DSA

What is a Stack? A stack is an abstract data type that adheres to the Last-In-First-Out (LIFO) principle in the context of data structures and algorithms (DSA). It’s a linear data structure with operations like push (adding an element to the top) and pop (removing the topmost element). Note: A stack can be visualized as […]

May 23, 2023 | Data Structure | No comments

Pointers in DSA

What are pointers? Pointers are variables that are used to save the position of a value in memory. A memory address is stored in a pointer to a location. Pointers are a key notion in data structures and algorithms (DSA) that provide significant memory management and data manipulation capabilities. Understanding pointers allows programmers to optimize […]

May 22, 2023 | Data Structure | No comments

Problems based on Pattern Matching

In the previous post, we discussed various pattern-matching algorithms, let us now see a few problems based on it. Given two strings, one is a text string and the other is a pattern string. The task is to print the indexes of all the occurrences of pattern string in the text string. For printing, Starting Index […]

May 21, 2023 | Data Structure | No comments

DSA: Strings Pattern Matching

What is Pattern Matching? Pattern matching is a fundamental problem in computer science that is employed in a wide range of applications. Pattern matching in the context of strings refers to detecting instances of a given pattern (substring) inside a bigger string. Algorithm for Pattern Matching: There are several popular algorithms and techniques for string […]

May 21, 2023 | Data Structure | No comments

DSA: Binary Search

What is Searching? Searching is a fundamental process in computer science that is commonly used to locate certain items or values within a data structure. Depending on the qualities of the data and the specific requirements of the search, different data formats and algorithms are used for searching. What is Binary Search in DSA? Binary […]

May 19, 2023 | Data Structure | No comments

DSA: Types of Tree

There are various varieties of trees that are often used in the context of Data Structures and Algorithms (DSA). Here are a few of the most important: Binary Tree: A binary tree is a type of tree data structure in which each node can only have two children. The left child is the left subtree, […]

May 17, 2023 | Data Structure | No comments

DSA: Trees

What is Tree Data Structure? A tree data structure is made up of nodes that are connected via edges. The root node is the topmost node in a tree, and it is connected to zero or more child nodes. Each child node can have zero or more child nodes attached to it, establishing a hierarchical […]

May 14, 2023 | Data Structure | No comments

Problems based on Linked List

Let us see a few problems based on Linked List. Given a linked list of N nodes such that it may contain a loop. A loop here means that the last node of the link list is connected to the node at position X(1-based index). If the link list does not have any loop, X=0. Remove the […]

May 14, 2023 | Data Structure | No comments

Advertisement