@@ -31,8 +31,8 @@ const linearSearchData = {
3131 defination : `Linear Search is defined as a sequential search algorithm that starts at one end and goes through each
3232 element of a list until the desired element is found, otherwise the search continues till the end of the data set.
3333 It is the easiest searching algorithm` ,
34- flowChart : 'assets/ds-image/DSA-404.webp ' ,
35- explainImage : 'assets/ds-image/DSA-404.webp ' ,
34+ flowChart : 'assets/ds-image/comming-soon.jpg ' ,
35+ explainImage : 'assets/ds-image/comming-soon.jpg ' ,
3636 workingProcedure : [
3737 `Start from the leftmost element of arr and one by one compare 'x' with each element of arr` ,
3838 `If 'x' matches with an element, return the index` ,
@@ -92,8 +92,8 @@ export const linearSearchMetaData: Algorithms = {
9292const binarySearchData = {
9393 defination :`Binary Search is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half.
9494 The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(Log n)` ,
95- flowChart : 'assets/ds-image/DSA-404.webp ' ,
96- explainImage : 'assets/ds-image/DSA-404.webp ' ,
95+ flowChart : 'assets/ds-image/comming-soon.jpg ' ,
96+ explainImage : 'assets/ds-image/comming-soon.jpg ' ,
9797 properties : [
9898 `The pre-condition for the binary search is that the elements must be arranged in a sorted order` ,
9999 `The implementation of binary search is limited as it can be implemented only on those data structures
@@ -157,8 +157,8 @@ export const binarySearchMetaData : Algorithms = {
157157const jumpSearchData = {
158158 defination :`Jump Search is a searching algorithm for sorted arrays. The basic idea is to check fewer elements by
159159 jumping ahead by fixed steps or skipping some elements in place of searching all elements.` ,
160- flowChart : 'assets/ds-image/DSA-404.webp ' ,
161- explainImage : 'assets/ds-image/DSA-404.webp ' ,
160+ flowChart : 'assets/ds-image/comming-soon.jpg ' ,
161+ explainImage : 'assets/ds-image/comming-soon.jpg ' ,
162162 properties :[
163163 `This algorithm works only for sorted input arrays` ,
164164 `Optimal size of the block to be skipped is √n, thus resulting in the time complexity O(√n2)` ,
@@ -215,8 +215,8 @@ const interpolationSearchData = {
215215 data points. Binary Search always goes to the middle element to check. On the other hand, interpolation search may go to
216216 different locations according to the value of the key being searched. For example, if the value of the key is closer to the
217217 last element, interpolation search is likely to start search toward the end side.` ,
218- flowChart : 'assets/ds-image/DSA-404.webp ' ,
219- explainImage : 'assets/ds-image/DSA-404.webp ' ,
218+ flowChart : 'assets/ds-image/comming-soon.jpg ' ,
219+ explainImage : 'assets/ds-image/comming-soon.jpg ' ,
220220 properties : [
221221 `Interpolation searching algorithm is only used when the elements in an array is sorted and uniformly distributed` ,
222222 `pos = low + ((target – A[low]) * (high – low) / (A[high] – A[low]))`
@@ -273,8 +273,8 @@ const exponentialSearchData = {
273273 assuming that the list is sorted in ascending order, the algorithm looks for the first exponent, j, where the value 2^j is greater
274274 than the search key. This value, 2^j becomes the upper bound for the binary search with the previous power of 2, 2^(j - 1), being the
275275 lower bound for the binary search` ,
276- flowChart : 'assets/ds-image/DSA-404.webp ' ,
277- explainImage : 'assets/ds-image/DSA-404.webp ' ,
276+ flowChart : 'assets/ds-image/comming-soon.jpg ' ,
277+ explainImage : 'assets/ds-image/comming-soon.jpg ' ,
278278 properties : [
279279 `Finding the range in which the key could sit` ,
280280 `Applying binary search in this range` ,
0 commit comments