码迷,mamicode.com
首页 >  
搜索关键字:arg max    ( 25115个结果
”上三角“行列式源代码(改良版,添加了几种特殊情况的特殊处理)
#include#include#includevoid main(){//输入行列式开始int n,i,j,a[20][20],T[20],max[20],b[20],k,q,p,f=2,u=0;float t[20][20],c,sum=1,w[20];cout>n;ifstream infil...
分类:其他好文   时间:2014-05-23 04:28:20    阅读次数:283
无锁环形队列
1 #include "stdafx.h" 2 #include 3 #include 4 #include 5 #include 6 #include 7 8 #define MAX_VIDEO_BUFF 1024 9 10 struct Header 11 { ...
分类:其他好文   时间:2014-05-21 20:04:15    阅读次数:377
【原创】高精度(压位储存)模板
无聊写了个高精度模板玩玩...... 1 /* 2 高精度(压位储存) 3 */ 4 #include 5 #include 6 #include 7 #include 8 #include 9 const int MAX=10005;//最长长度 10 using ...
分类:其他好文   时间:2014-05-21 19:47:19    阅读次数:588
c语言-完全背包问题
完全背包问题问题:有N种物品和一个容量为V的背包,每种物品都有无限件可用。第i种物品的费用是c[i],价值是w[i]。求解将哪些物品装入背包可使这些物品的费用总和不超过背包容量,且价值总和最大。分析:这个算法使用一维数组,先看伪代码:for i=1..N for v=0..V f[v]=max{f[...
分类:编程语言   时间:2014-05-21 17:51:45    阅读次数:240
poj1195 mobile phones 【二维树状数组】
一次AC 二维树状数组,有模版很好办 注意二维树状数组这个下标是[1][1]的 #include #include #include #include #include #include using namespace std; const int Max = 1030; int row, col, ar[Max][Max]; // 二维的其实下标为[1][1],这个要记得。 ...
分类:其他好文   时间:2014-05-21 16:23:34    阅读次数:271
POJ1182 食物链 【并查集变种】
挺简单的 N个元素扩展为 3*N个 i-A i-B i-C A吃B吃C吃A 挑战程序设计的89面 #include #include #include #include #include using namespace std; int N,K; const int MAX_N=333333; //并查集 int par[MAX_N]; int rank[MAX_N];//树的...
分类:其他好文   时间:2014-05-21 16:03:48    阅读次数:216
RGB 转化 HSV代码
public void toHSV3( int red , int green , int blue ){ double maxRGB = FqMath.max( red , green , blue );// double minRGB = FqMath.min( red , green , blue ); double itemp = maxRGB; //...
分类:其他好文   时间:2014-05-21 14:50:42    阅读次数:305
POJ - 1010 STAMPS
题意:  给出n种邮票,每种邮票有自己的面值(面值可能重复)        指定m种“总面值”,对每种“总面值”,求解满足如下条件的组合以达到该“总面值” (1)       所用邮票在n种中可以重复选取 (2)       所用邮票张数〈=4 (3)       尽量多的使用那个不同种类的邮票 Max (Stamp Types) (4)       若有多种方案满足(3...
分类:其他好文   时间:2014-05-21 14:29:54    阅读次数:259
Java 数组工具类排序,最大值最小值等
public class ArrayUtils{ /** * 返回数组最大值 * * @param a * @return */ public static int max(int[] a){ // 返回数组最大值 int x; int aa[]=new int[a.leng...
分类:编程语言   时间:2014-05-21 13:31:26    阅读次数:373
51系列小型操作系统精髓 简单实现6 C语言版待改进
#include "STC12C5A.H" #define TIMER_RELOAD()  {TL0=0x00;TH0=0xC4;}//使能T/C  初始10ms #define MAX_TASKS 8 //任务槽最大个数. unsigned char idata task_stack[MAX_TASKS][2];//任务堆栈.  PC指针为16位,需2个字节。 unsi...
分类:编程语言   时间:2014-05-21 08:12:12    阅读次数:285
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!