Skip to content

Commit

Permalink
Fix some basic Errors/Warn/issue/
Browse files Browse the repository at this point in the history
  • Loading branch information
ajay-dhangar committed Nov 11, 2024
1 parent ae8e554 commit f5d7de8
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 779 deletions.
5 changes: 1 addition & 4 deletions blog/bloom-filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ authors: [Aryan-Jain]
tags: [bloom-filter, data-structures, algorithms, C++, java, python]
---

# Understanding Bloom Filters in DSA: Space-Efficient Membership Testing

## Introduction
A **Bloom Filter** is a probabilistic data structure that offers a space-efficient way to test if an element is part of a set. Bloom Filters are widely used in systems where space constraints are essential and occasional false positives are acceptable, but false negatives are not. In this article, we’ll explore how Bloom Filters work, their advantages and limitations, and the use cases where they shine.

---
<!-- truncate -->

## What is a Bloom Filter?

Expand Down
4 changes: 2 additions & 2 deletions blog/comparing-sortings.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ authors: [Aryan-Jain]
tags: [ARYAN-JAIN, algo, dsa, algorithms, sorting, time-complexity]
---

# Comparison of Sorting Algorithms

Sorting algorithms are essential for organizing data, making it easier to analyze, search, and manipulate. Here’s an overview of some commonly used sorting algorithms, comparing their time complexity, efficiency, and applications.

<!-- truncate -->

## 1. Bubble Sort
**Description**: Bubble Sort repeatedly steps through the list, compares adjacent elements, and swaps them if needed until the list is sorted.

Expand Down
107 changes: 0 additions & 107 deletions docs/algorithms/string-algorithms/Boyer-moore-algorithm.md

This file was deleted.

Loading

0 comments on commit f5d7de8

Please sign in to comment.