搜索资源列表
to_the_max
- 最大子矩阵和问题,既求一个矩阵的子矩阵,子矩阵的各元素之和要求最大,题目也已打包上传-largest matrix and problems, both for a matrix-matrix, the matrix of the element and the requirements of the largest, subject has been packaged Upload
Max_SubCub
- 一个立方体被分割成n3个小立方体,每个小立方体内有一个整数,计算出所给立方体的最大子长方体,子长方体的大小由它所含所有整数之和确定-a cube n3 chopped into small cubes, each small cube inside an integer, calculated by the cube to the greatest son cuboid, and the son of the rectangular s
max2
- 最大子矩阵和问题 对于给定的m 行n 列的整数矩阵,编程计算其最大子矩阵和。-matrix and the biggest problem for a given m trip out of the integer n matrix calculation of its programming matrix and the greatest son.
suanfafenxi
- 算法分析实验 java实现: 有: 公约数 合并算法 字符排序 快速排序 马踏棋盘问题 马踏棋盘问题(文本做法) 折半查找 最大子段和-algorithm analysis experiments java achieved : : Convention few characters sorting algorithm with Quick Sort horse riding horse riding c
MaxSubSum
- 最大子段和,实现了四种方法来求最大字段和
phoenix7
- 可以求最大子段和的优良代码,采用动态规划的方法求得,算法效率较高
MaxDigitalSonString
- 求一个长字符串的最长数字子字符串,比如acf1155dd89673ee123,它的最大子字符串为89673。
最大子长方体问题
- *Cube:最大子长方体问题 问题描述: 一个长,宽,高分别为m,n,p的长方体被分割成个m*n*p个小立方体。每个小立方体内有一个整数。 求所给长方体的最大子长方体。子长方体的大小由它所含所有整数之和确定。 */-* Cube : The biggest problem for rectangular Problem descr iption : a long, wide and high respectively m, n, p r
序列最大子段和
- 列出序列最大子段和的三种方法
算法设计与分析源代码
- 包括:0-1背包.cpp 矩阵连乘.cpp 棋盘覆盖.cpp 整数划分.cpp 最大子段和
最大子矩阵
- 一个矩阵中的最大子矩阵,使里面元素相加之和达到最大
最大子数组
- 最大子数组
最大子长方体问题
- *Cube:最大子长方体问题 问题描述: 一个长,宽,高分别为m,n,p的长方体被分割成个m*n*p个小立方体。每个小立方体内有一个整数。 求所给长方体的最大子长方体。子长方体的大小由它所含所有整数之和确定。 */-* Cube : The biggest problem for rectangular Problem descr iption : a long, wide and high respectively m, n, p r
to_the_max
- 最大子矩阵和问题,既求一个矩阵的子矩阵,子矩阵的各元素之和要求最大,题目也已打包上传-largest matrix and problems, both for a matrix-matrix, the matrix of the element and the requirements of the largest, subject has been packaged Upload
algorithm2
- 最大子段和/三种方法/c++语言/(内有报告) 蛮力法,动态规划法,分治法。 可比较时间,随机输入数据...... -The largest sub-segment and/three methods/c++ language/(within report) brute force method, dynamic programming, divide and conquer. Comparable time, the rand
01-复杂度1 最大子列和问题
- 计算最大子列和 并使用最低的时间复杂度,真的特别厉害(Compute maximum subsequence sum)
子段和问题
- 用贪婪法 动态规划法 分治法三种方法求解最大子段和问题(Solving the largest sub segment sum)
Maximum sum of subarray
- 题目描述:给定一个数组a[0,...,n-1],求其最大子数组(长度>=1)和 输入描述:第一行一个整数n(1<=n<=5000),然后依次输入n个整数(每个整数范围[-5000, 5000]) 输出描述:输出一个整数表示最大子数组和 样例输入:5 1 -1 1 1 -1 样例输出:2(Topic descr iption:Given an array a[0,..., n-1]
分治法求最大子数组以及其对应的下标
- 分治法应用分治法求最大子数组以及其对应的下标分治法求最大子数组以及其对应的下标(Application of divide and conquer therapy)
Maxsum
- 用蛮力法、分治法、动态规划法实现最大子段和(There is MaxSums in three way.)