mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-15 05:55:08 +00:00
[PR #374] [CLOSED] solved searching by recursively #728
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/374
Author: @aman-ku
Created: 10/7/2019
Status: ❌ Closed
Base:
master← Head:master📝 Commits (10+)
1e5afccupdated README.md80997b9updated CodingGuidelines.md89069e2updated CodingGuidelines.md4cd255dupdated shellSort.c69a263b7.c :reverse of a number with overflow check added19c2e939.c :pallindrome of a number with overflow check added15f4fb1README.md updatede8da4c7Added solution to leetcode problem 190 in C5a6ed8eAdded Solution to leetcode Problem 1911f88545Added solution to Leetcode Problem 461📊 Changes
34 files changed (+1007 additions, -135 deletions)
View changed files
➕
BinarySearch_recursive.c(+53 -0)📝
CodingGuidelines.md(+5 -2)➕
LinearSearch_recursive.c(+51 -0)📝
README.md(+15 -1)➕
cipher/rc4.c(+189 -0)➕
data_structures/binary_trees/splay_tree.c(+138 -0)📝
exercism/hello-world/hello_world.c(+7 -5)📝
leetcode/README.md(+12 -1)📝
leetcode/src/1189.c(+8 -8)➕
leetcode/src/190.c(+13 -0)➕
leetcode/src/191.c(+10 -0)➕
leetcode/src/2.c(+43 -0)➕
leetcode/src/21.c(+56 -0)➕
leetcode/src/28.c(+37 -0)📝
leetcode/src/283.c(+6 -4)📝
leetcode/src/35.c(+12 -0)➕
leetcode/src/4.c(+29 -0)➕
leetcode/src/461.c(+12 -0)➕
leetcode/src/476.c(+15 -0)📝
leetcode/src/617.c(+1 -1)...and 14 more files
📄 Description
I wrote Binary and Linear Search by using recursive technique in C language
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.