中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言實現分治法實例

發布時間:2020-09-08 04:21:50 來源:腳本之家 閱讀:175 作者:我站在橋上看風景 欄目:編程語言

本文為大家分享了C語言實現分治法實例代碼,供大家參考,具體內容如下

使用分治法求最大值

這個函數將數組a[l]...a[r]分成a[l],...,a[m]和a[m+1],...a[r]兩部分,分別求出每一部分的最大元素(遞歸地),并返回較大的那一個作為整個數組的最大元素.如果數組大小是偶數,則兩部分大小相等;如果是奇數,第一部分比第二部分的大小大1.

#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <malloc.h>
using namespace std;
#define OK 1
#define ERROR -1
#define TRUE 1
#define FALSE 0
typedef int Status;
 
int Max(int a[], int l, int r)
{
  int u, v, m = (l + r) / 2;
  //當區間中只有一個元素,遞歸終止,并將該元素返回
  if(l == r)
    return a[l];
  //遞歸原區域的左邊
  u = Max(a, l, m);
  //遞歸原區域的右邊
  v = Max(a, m+1, r);
  //返回最大值
  return (u>v)?u:v;
}
int main()
{
  //舉例驗證
  int a[7] = {6, 5, 3, 4, 7, 2, 1};
  int maxx = Max(a, 0, 6);
  printf("%d\n", maxx);
  return 0;
}

漢諾塔的解

我們把盤子(遞歸地)移動到c上的方案是,將除了最下面的盤子之外的所有盤子移到b上,然后將做下面的盤子移到c上,然后(遞歸地)再將其他盤子移回到最下面的盤子上面.

#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <malloc.h>
using namespace std;
#define OK 1
#define ERROR -1
#define TRUE 1
#define FALSE 0
typedef int Status;
//輸出盤子的移動
void shift(int n, char x, char y)
{
  printf("Move %d disk: %c ---------> %c\n", n, x, y);
}
void hanoi(int n, char a, char b, char c)
{
  //遞歸終止的條件
  if(n == 1)
  {
    //將a上最下面的盤子移到c上
    shift(n, a, c);
    return;
  }
  //以c為中間軸,將a上的盤子移動到b上
  hanoi(n-1, a, c, b);
  shift(n, a, c);
  //以a為中間軸,將b上的盤子移動到c上
  hanoi(n-1, b, a, c);
}
int main()
{
  //舉例驗證
  hanoi(4, 'a', 'b', 'c');
  return 0;
}

使用分治法在尺子上畫刻度

要在尺子上畫刻度線,我們首先在左半邊畫刻度線,然后在中間畫一條最長的刻度線,最后在右半邊畫刻度線.

#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <malloc.h>
using namespace std;
#define OK 1
#define ERROR -1
#define TRUE 1
#define FALSE 0
typedef int Status;
//畫線
void mark(int m, int h)
{
  //由于無法實際表示刻度線之間的高度差,故用實際數字來體現
  printf("%d ", h);
}
//劃分該區域內的刻度
void rule(int l, int r, int h)
{
  //找到該區域的中間
  int m = (l + r) / 2;
  //當高度大于0
  if(h)
  {
    //劃分小區域
    rule(l, m, h-1);
    //畫線
    mark(m, h);
    //劃分小區域
    rule(m+1, r, h-1);
  }
}
int main()
{
  //舉例驗證
  rule(0, 14, 4);
  return 0;
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

定日县| 峨边| 石城县| 神木县| 上高县| 九寨沟县| 福贡县| 湘乡市| 长宁县| 罗定市| 武义县| 河源市| 海口市| 绥阳县| 呼玛县| 微博| 宁安市| 新丰县| 北碚区| 沈阳市| 南召县| 梧州市| 甘洛县| 南丹县| 巴南区| 大足县| 钦州市| 从化市| 黔西县| 武冈市| 松滋市| 建湖县| 轮台县| 元谋县| 广昌县| 邳州市| 海伦市| 长治市| 务川| 中方县| 北票市|