r*******y 发帖数: 290 | 1 1.
问:不用除号,怎么做除法?
答:用减法
问:怎么测试?
答:考虑特殊情况,设计input
问:怎么优化?
答:guess portion
2.
给一个stack结构,实现push,pop,max
答:不改变结构,max() o(n),增加数据,o(1) |
b******a 发帖数: 215 | 2
5/3用减法怎么除?
【在 r*******y 的大作中提到】 : 1. : 问:不用除号,怎么做除法? : 答:用减法 : 问:怎么测试? : 答:考虑特殊情况,设计input : 问:怎么优化? : 答:guess portion : 2. : 给一个stack结构,实现push,pop,max : 答:不改变结构,max() o(n),增加数据,o(1)
|
e*****w 发帖数: 144 | 3 觉得第二题是不是要答O(1) push/pop/max的答案?用额外辅助空间的。
【在 r*******y 的大作中提到】 : 1. : 问:不用除号,怎么做除法? : 答:用减法 : 问:怎么测试? : 答:考虑特殊情况,设计input : 问:怎么优化? : 答:guess portion : 2. : 给一个stack结构,实现push,pop,max : 答:不改变结构,max() o(n),增加数据,o(1)
|
s****y 发帖数: 2052 | 4 如果n>m
n/m 先减法
减到一个比m小的数,
然后乘10,继续减法,行么?
【在 b******a 的大作中提到】 : : 5/3用减法怎么除?
|
c***g 发帖数: 472 | 5 google?
【在 r*******y 的大作中提到】 : 1. : 问:不用除号,怎么做除法? : 答:用减法 : 问:怎么测试? : 答:考虑特殊情况,设计input : 问:怎么优化? : 答:guess portion : 2. : 给一个stack结构,实现push,pop,max : 答:不改变结构,max() o(n),增加数据,o(1)
|
c********x 发帖数: 84 | 6
not quite right,
use right shift.
operation mod.
This is the fast way.
【在 r*******y 的大作中提到】 : 1. : 问:不用除号,怎么做除法? : 答:用减法 : 问:怎么测试? : 答:考虑特殊情况,设计input : 问:怎么优化? : 答:guess portion : 2. : 给一个stack结构,实现push,pop,max : 答:不改变结构,max() o(n),增加数据,o(1)
|
c********x 发帖数: 84 | 7
not quite right,
use right shift.
operation mod.
This is the fast way.
【在 r*******y 的大作中提到】 : 1. : 问:不用除号,怎么做除法? : 答:用减法 : 问:怎么测试? : 答:考虑特殊情况,设计input : 问:怎么优化? : 答:guess portion : 2. : 给一个stack结构,实现push,pop,max : 答:不改变结构,max() o(n),增加数据,o(1)
|
c********x 发帖数: 84 | 8
not quite right,
use right shift.
operation mod.
This is the fast way.
【在 r*******y 的大作中提到】 : 1. : 问:不用除号,怎么做除法? : 答:用减法 : 问:怎么测试? : 答:考虑特殊情况,设计input : 问:怎么优化? : 答:guess portion : 2. : 给一个stack结构,实现push,pop,max : 答:不改变结构,max() o(n),增加数据,o(1)
|