Skip to content

Commit 5b56f34

Browse files
authored
Update Array.md
1 parent d95e553 commit 5b56f34

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Array.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,12 @@ int main()
165165

166166
}
167167
```
168+
169+
### Searching
170+
You can perform a search for an array element based on its value or its index.
171+
172+
There are two searching techniques linear and binary. For simplicity, I am implementing linear search algorithm to search element in array.
173+
174+
```c
175+
176+
```

0 commit comments

Comments
 (0)