最新 最热

位运算实用指南

说明 : 想来这应该是初次接触移位操作符时一定会了解到的知识点,根据2进制的整数表示方法应该不难理解,原因细节不再赘述~

2018-08-02
1

Codeforces 965B 题解报告

http://codeforces.com/contest/965/problem/B

2018-07-25
0

有效防止softmax计算时上溢出(overflow)和下溢出(underflow)的方法

《Deep Learning》(Ian Goodfellow & Yoshua Bengio & Aaron Courville)第四章「数值计算」中,谈到了上溢出(overflow)和下溢出(underflow)对数值计算的影响,并以softmax函数和log softmax函数为例进行了讲解。这里我再详细地...

2018-07-05
1

一大波常用函数公式,值得收藏!

《一大波常用函数公式》微信推送后,同学们很是喜爱,今天重发,小伙伴们可以收藏一下,在日常工作中如果有类似的问题,拿来即用。话不多说,上菜——1、查找重复内容公式:=IF(COUNTIF(A:A,...

2018-06-20
1

hdu1032

#include <iostream> using namespace std; int main() { int a,b,t,i,max; while(cin >> a >> b) { cout << a << " " << b << " "; ......

2018-06-04
1

hdu1023

#include <stdio.h>#include <string.h>#define BASE 10000#define PFMT "%04d"#define MAX 105void print_bn(int*a, int l){int i;for(i=l-1;i>0;i--)if(a[i]>...

2018-06-04
1

使用3ds Max制作简单卧室

一、介绍学习目标:熟练使用“标准基本体”和“扩展基本体”内的按钮来创建对象。软件环境:3ds Max2015二、实验步骤1,启动3ds Max,使用“长方体”工具在场景中创建一个长方体作为空间...

2018-06-04
1

Blender、Maya、C4D哪个最适合做3D动画?

写在前面:关于哪个软件更容易学,其实把其中的一个学专学精了都会比较吃香,建议初学者先考虑清楚今后要从事的职业和发展方向,再有针对性的精修;...

2018-05-31
1

SourceEngine中的粒子系统

https://developer.valvesoftware.com/wiki/Particle_System_Overview文件格式PCF编辑器Particle EditorMemory Fields这里其实也是组件模式的一种应用, 否则内存和CPU的开销会很大Control Points每个粒子系统......

2018-05-23
2

leetcode-69-Sqrt(x)

题目描述:Implement int sqrt(int x).Compute and return the square root of x.x is guaranteed to be a non-negative integer.Example 1:Input: 4Output: 2Example 2:...

2018-05-21
1