Skip to the content

coderz.py

Keep Coding Keep Cheering!

  • Programming
    • C
    • C++
    • Java
    • Python
  • DBMS
  • DSA Basics
  • DSA Sheet
  • AI
    • Machine Learning
    • Deep learning
  • Mulesoft
    • Mule 4
    • Dataweave
    • RAML
  • Privacy Policy
  • Programming
    • C
    • C++
    • Java
    • Python
  • DBMS
  • DSA Basics
  • DSA Sheet
  • AI
    • Machine Learning
    • Deep learning
  • Mulesoft
    • Mule 4
    • Dataweave
    • RAML
  • Privacy Policy
  • Programming
    • C
    • C++
    • Java
    • Python
  • DBMS
  • DSA Basics
  • DSA Sheet
  • AI
    • Machine Learning
    • Deep learning
  • Mulesoft
    • Mule 4
    • Dataweave
    • RAML
  • Privacy Policy
mulesoft

Mule 4: HTTP request connector

  • May 23, 2023
  • Mule 4
the HTTP Request connector is a powerful component that allows you to send HTTP requests and receive responses from external systems or APIs
Trie in DSA

Stack in DSA

  • May 23, 2023
  • Data Structure
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 […]
Trie in DSA

Pointers in DSA

  • May 22, 2023
  • Data Structure
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 […]
Trie in DSA

Problems based on Pattern Matching

  • May 21, 2023
  • Data Structure
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 […]
Trie in DSA

DSA: Strings Pattern Matching

  • May 21, 2023
  • Data Structure
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 […]
Trie in DSA

DSA: Binary Search

  • May 19, 2023
  • Data Structure
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 […]
Trie in DSA

DSA: Types of Tree

  • May 17, 2023
  • Data Structure
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, […]
Trie in DSA

DSA: Trees

  • May 14, 2023
  • Data Structure
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 […]
Trie in DSA

Problems based on Linked List

  • May 14, 2023
  • Data Structure
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 […]
Trie in DSA

DSA: Linked List

  • May 14, 2023
  • Data Structure
What is a Linked List? A linked list is a linear data structure composed of nodes, each of which holds a value and a reference (or pointer) to the next node in the list. The first node is referred to as the list’s head, while the last node is referred to as the list’s tail. […]

Posts navigation

Page Number1 Page Number2 Page Number3 … Page Number56

Advertisement

Recent Posts

  • Square Root of Integer
  • Build Array From Permutation
  • DSA: Heap
  • DSA: Trie
  • Trees: Lowest Common Ancestor
Copyright : coderz.py