码迷,mamicode.com
首页 >  
搜索关键字:multiply    ( 344个结果
javascript中call函数与apply
javascript中的call方法使当前对象可以调用另一个对象的方法,即改变this的指向内容 1 var first_object = { 2 num: 42 3 }; 4 var second_object = { 5 num: 24 6 }; 7 function multiply(mult...
分类:移动开发   时间:2014-09-26 19:44:18    阅读次数:200
Leetcode: Pow(x, n)
Implement pow(x, n).Analysis:The most basic idea, x multiply itself n time and return. However, this strait forward approach got time excessed. O(n).N...
分类:其他好文   时间:2014-09-20 01:04:26    阅读次数:207
大数相乘
原文地址: #include #include #include void multiply(char* a, char* b, char* c) { int sa = 0; int sb = 0; int i,j; int *result = NULL; if ((NULL == a) || (NULL == b) || (NULL == c)) { retu...
分类:其他好文   时间:2014-09-15 01:06:58    阅读次数:207
Careercup | Chapter 7
7.4Write methods to implement the multiply, subtract, and divide operations for integers. Use only the add operator.比较简单。但是要封装得好。7.5 Given two squares...
分类:其他好文   时间:2014-09-14 11:17:07    阅读次数:189
Leetcode: Multiply Strings
Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-nega...
分类:其他好文   时间:2014-09-05 12:36:41    阅读次数:227
Multiply Strings
Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-nega...
分类:其他好文   时间:2014-09-01 20:59:03    阅读次数:173
[LeetCode] Multiply Strings
Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-nega...
分类:其他好文   时间:2014-08-20 11:57:22    阅读次数:198
HDU 3074-Multiply game(线段树:单点更新,区间求积)
Multiply game Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1450    Accepted Submission(s): 508 Problem Description Tired of play...
分类:其他好文   时间:2014-08-19 16:32:54    阅读次数:299
HDU3074_Multiply game(线段树/单点更新)
解题报告 题意: 略 思路: 单点更新,区间乘积。 #include #include #include #define LL long long using namespace std; LL mul[501000]; void update(int root,int l,int r,int p,int v) { int mid=(l+r)/2; if(l==r)...
分类:其他好文   时间:2014-08-08 08:29:05    阅读次数:239
Multiply Strings leetcode java
题目:Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-....
分类:编程语言   时间:2014-08-04 13:58:57    阅读次数:285
344条   上一页 1 ... 30 31 32 33 34 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!