[PR #818] [MERGED] feat: Exponential Search #1335

Closed
opened 2026-01-29 15:19:25 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/818
Author: @faridevnz
Created: 3/24/2021
Status: Merged
Merged: 3/25/2021
Merged by: @ayaankhan98

Base: masterHead: master


📝 Commits (9)

📊 Changes

2 files changed (+108 additions, -0 deletions)

View changed files

📝 DIRECTORY.md (+1 -0)
searching/exponential_search.c (+107 -0)

📄 Description

Description of Change

  • added Exponential Search Algorithm

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes: implementation of Exponential Search


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/818 **Author:** [@faridevnz](https://github.com/faridevnz) **Created:** 3/24/2021 **Status:** ✅ Merged **Merged:** 3/25/2021 **Merged by:** [@ayaankhan98](https://github.com/ayaankhan98) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (9) - [`f3429bf`](https://github.com/TheAlgorithms/C/commit/f3429bf4ea779f6881bfcae4c9c7b1c5f52cb4d1) feat(ExponentialSearch): added C implementation of Exponential Search - [`c12502a`](https://github.com/TheAlgorithms/C/commit/c12502adbcc21462fa8bf4a70bdd9422083b20c3) fix: typo - [`f7030bb`](https://github.com/TheAlgorithms/C/commit/f7030bb8aacd8b33f166abb97e3452254da98dd5) refactor(ExponentialSearch): removed unused imports - [`24ff35b`](https://github.com/TheAlgorithms/C/commit/24ff35b2f1f64696fcbac6272ea154d15f91fa7a) fix(Exponential Search): review fixes - [`5417b0c`](https://github.com/TheAlgorithms/C/commit/5417b0c315392be4ab8841e6d4fb6c1e50041f3c) updating DIRECTORY.md - [`8afe7b9`](https://github.com/TheAlgorithms/C/commit/8afe7b97661e09bec1b170e1bf1b678e9a62b179) refactor(ExponentialSearch): refactoring types - [`bf52577`](https://github.com/TheAlgorithms/C/commit/bf52577ad083d4a2e14ccbde857d1d863b81180f) Merge branch 'master' of https://github.com/faridevnz/C - [`1f0ffe6`](https://github.com/TheAlgorithms/C/commit/1f0ffe6bf70dbea5d129c319c584497cca4475bb) fix(ExponentialSearch): fixes and added brief - [`b99e641`](https://github.com/TheAlgorithms/C/commit/b99e641850f91027adfdd5256d35abcc1b967de4) refactor(ExponentialSearch): added briefs ### 📊 Changes **2 files changed** (+108 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `searching/exponential_search.c` (+107 -0) </details> ### 📄 Description #### Description of Change - added Exponential Search Algorithm #### Checklist - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Added tests and example, test must pass - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: implementation of Exponential Search --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:19:25 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1335