当前位置: 首页 > 编程笔记 >

C ++程序使用二进制搜索方法查找最大子数组和

佴涵蓄
2023-03-14
本文向大家介绍C ++程序使用二进制搜索方法查找最大子数组和,包括了C ++程序使用二进制搜索方法查找最大子数组和的使用技巧和注意事项,需要的朋友参考一下

二进制搜索是一种运行时间复杂度为O(log n)的快速搜索算法。这种搜索算法基于分而治之的原理。为了使该算法正常工作,数据收集应采用排序形式。

二进制搜索通过比较集合中最中间的项来查找特定项。如果发生匹配,则返回项目的索引。如果中间项目大于该项目,则在中间项目左侧的子数组中搜索该项目。否则,将在中间项目右侧的子数组中搜索该项目。该过程也将在子数组上继续进行,直到子数组的大小减小到零为止。

这是使用二进制搜索方法查找最大子数组总和的程序。

演算法

Begin
   Declare an integer function maximum() to find the maximum of two integers.
   Declare val1, val2 to the integer datatype.
   Pass them as parameter.
   Check the maximum between val1 and val2.
   Return the maximum value.
End
Begin
   Declare an integer function MCS() to find the maximum sum sub-array which includes medium of the sub-array.
   Declare an array array[] and variable l, m, h to the integer datatype.
   Pass them as parameter.
   Declare variable s, sum_of_left_part to the integer datatype.
      Initialize s = 0.
      Initialize sum_of_left_part = -1.
   for (int i = m; i >= l; i--)
      s = s + array[i].
   if (s > sum_of_left_part) then
      sum_of_left_part = s.
      s = 0
   Declare variable sum_of_right_part to the integer datatype.
      Initialize sum_of_right_part = -1.
   for (int i = m+1; i <= h; i++)
      s = s + array[i].
   if (s > sum_of_right_part) then
      sum_of_right_part = s.
   return sum_of_left_part + sum_of_right_part.
End
Begin
   Declare an integer function MaximumSum_of_SubArray().
   Declare an array array[] and variable l, h to the integer datatype.
      Pass them as parameter.
   Declare m to the integer datatype.
   if (l == h) then
      return array[l].
   m = (l + h)/2;
   return maximum(maximum(MaximumSum_of_SubArray(array, l, m), MaximumSum_of_SubArray(array, m+1, h)), MCS(array, l, m, h)).
   Declare number_of_elements and i to the integer datatype.
   Print “Enter the number of elements of array: ”.
   Enter the value of number_of_elements.
   Declare an array a[number_of_elements] to the integer datatype.
   for(i = 0; i < n; i++)
      Print “Enter the element of”.
      Enter the data element of array.
   Print “Maximum sum of Sub-Array is: ” .
      Print the result of MaximumSum_of_SubArray(a, 0, n-1).
End.

示例

#include<iostream>
using namespace std;
int maximum(int val1, int val2) // find the maximum of two integers {
   return (val1 > val2)? val1:val2;
}
int MCS(int array[], int l, int m, int h) // find the maximum sum sub-array which includes medium of the sub-array. {
   int s = 0;
   int sum_of_left_part = -1;
   for (int i = m; i >= l; i--) {
      s = s + array[i];
      if (s > sum_of_left_part)
         sum_of_left_part = s;
   }
   s = 0;
   int sum_of_right_part = -1;
   for (int i = m+1; i <= h; i++) {
      s = s + array[i];
      if (s > sum_of_right_part)
         sum_of_right_part = s;
   }
   return sum_of_left_part + sum_of_right_part; // Return sum of elements on left and right of medium.
}
int MaximumSum_of_SubArray(int array[], int l, int h) {
   int m;
   if (l == h)
      return array[l];
   m = (l + h)/2;
   return maximum(maximum(MaximumSum_of_SubArray(array, l, m), MaximumSum_of_SubArray(array, m+1, h)), MCS(array, l, m, h));
}
int main() {
   int number_of_elements, i;
   cout<<"Enter the number of elements of array: ";
   cin>> number_of_elements;
   cout<<endl;
   int a[number_of_elements];
   for(i = 0; i < number_of_elements; i++) {
      cout<<"Enter the element of "<<i+1<<": ";
      cin>>a[i];
   }
   cout<<"\nMaximum sum of Sub-Array is: "<<MaximumSum_of_SubArray(a, 0, number_of_elements -1); // Print the maximum sum sub-array.
   return 0;
}

输出结果

Enter the number of elements of array: 5

Enter the element of 1: 12
Enter the element of 2: 45
Enter the element of 3: 56
Enter the element of 4: 48
Enter the element of 5: 75

Maximum sum of Sub-Array is: 236
 类似资料:
  • 本文向大家介绍用C ++程序查找二进制搜索树的最小值,包括了用C ++程序查找二进制搜索树的最小值的使用技巧和注意事项,需要的朋友参考一下 它是一个寻找二叉搜索树的最小值的程序。 演算法 示例 输出结果

  • 这是我第一次使用这个平台提问。我想知道以下代码有什么问题,它们没有在主代码末尾打印出目标数字的索引。发生了什么?祝那些阅读本文的人度过愉快的一天。

  • 本文向大家介绍在Javascript二进制搜索树中搜索最小值和最大值,包括了在Javascript二进制搜索树中搜索最小值和最大值的使用技巧和注意事项,需要的朋友参考一下 在二元搜索树中,如果我们查看左孩子总是比父孩子小的属性,我们会发现,如果继续向左孩子迭代直到到达没有左孩子的节点,我们基本上会发现BST中最小的元素。 让我们在代码中实现此功能。从现在开始,我们将仅实现该函数的单个版本,即迭代或

  • 我有一个二进制搜索树,它的每个节点都有两个值。 所以它的节点是这样的。 我已经根据节点的“name”变量的升序在BST中插入了值。所以树的顺序遍历将按“name”的升序返回节点。 现在我想根据“值”变量的升序显示树节点。无需更改原始树。哪种算法/方法对此最有效?

  • 问题内容: 我被要求对数组进行排序和搜索。对数组进行排序很简单,我的代码也起作用了,但是每当我尝试调用二进制搜索方法时,它就可以对数组中的第一个元素起作用,但是结果是“ -1” 我的完整代码如下: 问题答案: 您搞砸了二进制搜索间隔

  • 本文向大家介绍C# MathF.Floor()方法查找最大整数,包括了C# MathF.Floor()方法查找最大整数的使用技巧和注意事项,需要的朋友参考一下 C#中的MathF.Floor()方法用于查找最大整数,该整数小于或等于指定的浮点值。 语法 以下是语法- 上面的Val是浮点值。 示例 现在让我们看一个实现MathF.Floor()方法的示例- 输出结果 示例 现在让我们来看另一个实现M