码迷,mamicode.com
首页 >  
搜索关键字:integer division    ( 15415个结果
取文件的大小 (KB,MB,GB...)
取文件的大小 (KB,MB,GB...) 2种方式: VB 和 C# 1,  VB Public Function GetFileSize(ByVal iFileSizeKB As Long) As String Dim iFileSizeMB As Integer Dim iFileSizeGB As Integer If (iFileSizeKB >= 1024) Th...
分类:其他好文   时间:2014-06-19 12:39:06    阅读次数:310
Pow(x, n)
题目 Implement pow(x, n). 方法 注意Integer.MIN_VALUE值和Integer.MAX_VALUE值。 public double pow(double x, int n) { if (n == 0) { return 1; } if (n == Integer.MIN_VAL...
分类:其他好文   时间:2014-06-19 10:37:27    阅读次数:210
LeetCode ---- Merge Sorted Array
题目链接Problem discriptionGiven two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size t...
分类:其他好文   时间:2014-06-16 11:12:36    阅读次数:192
java hashcode的Delphi实现
程序使用java做后台服务,数据处理时使用了java的hashcode,Delphi程序也需要生成这个hashcode,为了一致,所以要在Delphi下实现和Java一样的算法。下面即Delphi版的hashCode:function hashCode(val: string): Integer;v...
分类:编程语言   时间:2014-06-16 09:30:51    阅读次数:303
delphi 结束指定进程
转自:http://blog.csdn.net/mailreboot/article/details/1946866 1 //结束进程 2 function KillTask(ExeFileName: string): Integer; 3 const 4 PROCESS_TERMINATE = ....
分类:其他好文   时间:2014-06-16 07:11:11    阅读次数:270
LeetCode Integer to Roman
class Solution {private: const static char* pattern[]; const static char* roman_digit[];public: string intToRoman(int num) { if (num ...
分类:其他好文   时间:2014-06-16 07:04:22    阅读次数:171
delphi中OleContainer的使用总结
1:定义流的header , OleContainer要求流中要有Headertype//流Header的结构TStreamHeader = recordSignature: Integer; //$434F4442DrawAspect: Integer; //1DataSize: Integer;...
分类:其他好文   时间:2014-06-15 21:10:28    阅读次数:472
leetcode Roman to Integer
只有C、X、I可以作为前缀,后缀的情况不需要考虑,直接加上去即可,我的代码还不是很简洁,请指正 {CSDN:CODE:389739}...
分类:其他好文   时间:2014-06-15 08:58:39    阅读次数:174
[LeetCode] [First Missing Positive 2012-03-08]
Given an unsorted integer array, find the first missing positive integer.For example, Given [1,2,0] return 3, and [3,4,-1,1] return 2.Your algorithm s...
分类:其他好文   时间:2014-06-13 20:25:38    阅读次数:241
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!