码迷,mamicode.com
首页 >  
搜索关键字:3ds max    ( 23629个结果
Java实现堆排序
堆排序 public class HeapSort { public static void main(String[] args) { int[] arr = {1, 3, 519, 2, 10, 8, 0, 998}; heapSort(arr); System.out.println(Arra ...
分类:编程语言   时间:2021-04-21 12:26:45    阅读次数:0
PHP 实现大文件视频推流
/** * 视频推流 * 返回视频流 */ function bofang(){ set_time_limit(0); ini_set('max_execution_time', 0);//秒为单位,自己根据需要定义 ini_set("memory_limit",-1); $moviePath = ...
分类:Web程序   时间:2021-04-21 12:10:47    阅读次数:0
聚合函数
mysql 系统提供了很多的函数 count:统计个数,次数,null不统计 max:最大值 min:最小值 sum求和 avg平均值 round:四舍五入 ...
分类:其他好文   时间:2021-04-20 15:47:17    阅读次数:0
html-回应式排版设计 打 CAll第6天
Meta 表示变化 name 名字 viewport 视口 centent 内容 device 配置 scale 比例&范围 Maximum 最大比例&范围&限度 screen 屏幕 手机兼容性适配 @media screen and (max-width:600px) { .content{wid ...
分类:Web程序   时间:2021-04-20 15:42:04    阅读次数:0
颜色空间转换 RGB到HSV
参考链接: https://www.rapidtables.com/convert/color/rgb-to-hsv.html https://zhuanlan.zhihu.com/p/67930839 在缺陷检测时,直接使用RGB值检测一些有色差的缺陷时,往往不容易检测,因为RGB值的变化在肉眼上 ...
分类:其他好文   时间:2021-04-20 15:09:32    阅读次数:0
Docker Hadoop 配置常见错误及解决办法
Docker Hadoop 配置常见错误及解决办法 问题1:wordcount运行卡住,hadoop 任务运行到running job就卡住了 INFO mapreduce.Job: Running job: job_.... 解决如下: 1. 修改mapred-site.xml配置,配置文件在Ha ...
分类:其他好文   时间:2021-04-20 14:54:20    阅读次数:0
363. Max Sum of Rectangle No Larger Than K
问题: 给定二维数组, 求其中子矩形中元素和不大于K 的最大和。 Example 1: Input: matrix = [[1,0,1],[0,-2,3]], k = 2 Output: 2 Explanation: Because the sum of the blue rectangle [[0 ...
分类:其他好文   时间:2021-04-19 15:55:02    阅读次数:0
Python随机数
Python自带的random库 函数名称函数功能 random.randint(n,m) 产生n-m间的一个随机数 random.random() 产生0-1间的浮点数 random.uniform(1.1,5.4) 产生n-m间的浮点数 random.randrange(n,m,k) 产生n-m ...
分类:编程语言   时间:2021-04-19 15:47:15    阅读次数:0
DP-最大上升序列
进入题目 思路(代码主体) sum[i]=max(sum[i],sum[j]+m[i]) 代码 #include <iostream> #include <cstdio> #include <vector> using namespace std; int main() { int n,Max=0; ...
分类:其他好文   时间:2021-04-19 15:26:22    阅读次数:0
POJ 1753
BFS可以延伸的应用变化繁多,这道题配合状态压缩共同解决,不过时空复杂度还可以进一步优化。 #include <iostream> #include <algorithm> #include <queue> #include <string> #include <vector> #include < ...
分类:其他好文   时间:2021-04-19 14:36:16    阅读次数:0
23629条   上一页 1 ... 11 12 13 14 15 ... 2363 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!