最新 最热

HDU 4185 Oil Skimming(思维+二分图最大匹配数)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4185       题意是输入n*n的地图,然后问最多有多少个1*2或者2*1的'#'。

2019-01-11
1

HDU 2444 The Accomodation of Students(二分图判断+最大匹配数)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2444       题意是有n个人,m个配对,问能不能根据m个将这些人分成两个集合,且集合中的任意两人

2019-01-11
1

161. 旋转图像交换加转置

样例 给出一个矩形[[1,2],[3,4]],90度顺时针旋转后,返回[[3,1],[4,2]]

2018-09-04
1

162. 矩阵归零先找为零的位置,再分别置零

给定一个m×n矩阵,如果一个元素是0,则将其所在行和列全部元素变成0。 需要在原矩阵上完成操作。

2018-09-04
1

leetcode-724-Find Pivot Index

题目描述:Given an array of integers nums, write a method that returns the "pivot" index of this array.We define the pivot index as the index where the sum of the ...

2018-07-05
1

【吉比特】G-bits2017技术类岗位编程题

求素数输入M、N,1 < M < N < 1000000,求区间[M,N]内的所有素数的个数。素数定义:除了1以外,只能被1和自己整除的自然数称为素数输入描述:两个整数M,N输出描述:区间内素数的个数示例1输入2 10输出4#include<iostream>#defin...

2018-06-04
1

VS2005中Nebula3数据类型的调试信息显示

用过VS2003的应该知道, STL的容器调试起来非常麻烦, 因为调试时显示的信息非常不直观VS2005引入一个autoexp.dat, 可以定义数据在调试时显示的格式详细介绍可以参考:Writing custom visualizers for Visual Studio 20...

2018-05-23
1

PhysX学习笔记(3): 动力学(2) Actor

ActorActor扮演两种角色: 静态对象, 动态刚体(也叫body). Actor包含shape. Shape之间相交会触发很多行为. Static actor主要作用是碰撞检测, 所以一般都会赋于对应的shapeDynamic actor可能只表示一个抽象的连接点, ...

2018-05-23
1

leetcode-643-Maximum Average Subarray I

题目描述:Given an array consisting of n integers, find the contiguous subarray of given length k that has the maximum average value. And you need to output the max...

2018-05-22
1

leetcode-645-Set Mismatch

题目描述:The set S originally contains numbers from 1 to n. But unfortunately, due to the data error, one of the numbers in the set got duplicated to another numbe...

2018-05-22
1