上周尝试用opencl求极大值,在网上查到大多是求和,所谓的reduction算法。不过思路是一样的。CPP: int err = 0; unsigned
long int nNumCount = 102400000; int nLocalSize = 256; int nGr...
分类:
其他好文 时间:
2014-06-29 07:47:56
阅读次数:
1793
mListView.setSelectionFromTop(position,
y);利用上述方法设置Item在ListView中的位置。y为Item距离ListView顶端的距离,也就是图中的1;计算方式:1 = 2 - 3
-4坐标计算:int[] location = new int[2];v...
分类:
微信 时间:
2014-06-11 22:03:32
阅读次数:
516
Sub 月汇总() Dim MyPath, MyName, AWbNameDim Wb As
Workbook, WbN As StringDim G As LongDim num As Long Application.ScreenUpdating =
FalseMyPath = ActiveW....
分类:
其他好文 时间:
2014-06-11 21:56:24
阅读次数:
398
感谢ZYF神犇的耐心解答……如果这题只要求最小代价……那就是一个比较明显的拆点最小割,对于所有\(j
11 #include 12 #include 13 #include 14 using namespace std; 15 typedef long long
LL; 16 const in...
分类:
其他好文 时间:
2014-06-11 12:00:44
阅读次数:
290
原题地址:https://oj.leetcode.com/problems/search-insert-position/题意:Given
a sorted array and a target value, return the index if the target is found. If
n...
分类:
编程语言 时间:
2014-06-11 11:28:40
阅读次数:
349
其实话说一直以来也没真正去理解好position:relative的用法的真实意义。
我想很多人实实在在用的多都是position:relative和position:absolute结合起来一起用的。
position属性是用四种定位。默认的是static。 position:absol...
分类:
Web程序 时间:
2014-06-11 11:27:56
阅读次数:
303
算术类型:整型(integral type)char : 一个机器字节(1BYTE =
8BIT)bool: 1 BIT整型: int:
与编译环境相关(不是机器),32位的编辑环境则长度为32BIT,故可以使用sizeof(int)来得到编译器环境的位数(返回的是字节长度)short/long/....
分类:
其他好文 时间:
2014-06-11 11:20:39
阅读次数:
175
在控制台操作时,使用的格式化输入和输出为scanf和printf,那么对文件的IO操作也可以使用fscanf和fprintf,它们的使用如下:
#include
#include
#include
const int LENGTH=80;
int main(void){
long num1=234567L;
long num2=345123L;
long num3=78...
分类:
其他好文 时间:
2014-06-07 13:12:41
阅读次数:
248
题目大意:
三个操作。
1. 合并两个集合
2.把第一个元素放到第二个集合里
3.输出集合的数量和和。。
思路分析:
要用p记录这个元素所在集合编号,然后用编号建立并查集。
#include
#include
#include
#include
using namespace std;
typedef long long LL;
int set[111111...
分类:
其他好文 时间:
2014-06-07 12:52:40
阅读次数:
267
题目链接题意:扩展gcd模板: 1 #include 2 #include 3 #include 4
#include 5 #define LL long long 6 using namespace std; 7 8 void exgcd(LL a, LL
b, LL &d, LL &x...
分类:
其他好文 时间:
2014-06-07 07:50:13
阅读次数:
187