Redian新闻
>
谁给科普以下chromecast如何播放youku,sohu还有nas的视频呀
avatar
谁给科普以下chromecast如何播放youku,sohu还有nas的视频呀# PDA - 掌中宝
l*4
1
leetcode上的divide integer题,小弟的code总是在2147483647, 1这个case上用时过
长,请高手帮忙挑挑bug 拜谢~
code如下:
int divide(int dend, int dor) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
long dividend=dend;
long divisor=dor;
if(dividend==0||divisor==0)
return 0;
int negate=1;
if(dividend<0){
dividend=-dividend;
negate=-negate;
}
if(divisor<0){
divisor=-divisor;
negate=-negate;
}
int count=0;
int addition=divisor;
while(divisor<=dividend){
divisor+=addition;
++count;
}
count*=negate;
return count;
}
avatar
j*o
3
我不知道如何开始
卫东大师?
avatar
a*l
4
这似乎太蛮力了点吧?

【在 l***4 的大作中提到】
: leetcode上的divide integer题,小弟的code总是在2147483647, 1这个case上用时过
: 长,请高手帮忙挑挑bug 拜谢~
: code如下:
: int divide(int dend, int dor) {
: // Start typing your C/C++ solution below
: // DO NOT write int main() function
: long dividend=dend;
: long divisor=dor;
: if(dividend==0||divisor==0)
: return 0;

avatar
C*C
5
据我所知:
1. install 'google cast' extension on your 'chrome' browser in your laptop
2. play youku, sohu, etc from the 'chrome' browser in your LAPTOP
3. click 'cast' extension button on right up corner
4. you cannot turn off your laptop while watching
avatar
l*4
6
水平粗陋,见笑了

【在 a****l 的大作中提到】
: 这似乎太蛮力了点吧?
avatar
b*i
7
在考虑买一个。
4. you cannot turn off your laptop while watching
可不可以用laptop上网同时在电视上看片子?

【在 C***C 的大作中提到】
: 据我所知:
: 1. install 'google cast' extension on your 'chrome' browser in your laptop
: 2. play youku, sohu, etc from the 'chrome' browser in your LAPTOP
: 3. click 'cast' extension button on right up corner
: 4. you cannot turn off your laptop while watching

avatar
a*l
8
没关系,我看没有什么bug,你这个算法就是在这个case下会用很多时间的。完全是
expected behavior.

【在 l***4 的大作中提到】
: 水平粗陋,见笑了
avatar
b*i
9
在考虑买一个。
4. you cannot turn off your laptop while watching
可不可以用laptop上网同时在电视上看片子?

【在 C***C 的大作中提到】
: 据我所知:
: 1. install 'google cast' extension on your 'chrome' browser in your laptop
: 2. play youku, sohu, etc from the 'chrome' browser in your LAPTOP
: 3. click 'cast' extension button on right up corner
: 4. you cannot turn off your laptop while watching

avatar
D*d
10
可以用二进制移位 << >> 完成。
int divide(int dend, int dor) {
if(dend == 0 || dor == 0 ) return 0;
bool IsNegative = false;
if(dend < 0){
IsNegative = !IsNegative;
dend = -dend;
}

if(dor < 0){
IsNegative = !IsNegative;
dor = -dor;
}
int k;
// align
for(k = 0; (dend >= dor); ++k) dor <<= 1;
if(k>0)dor >>= 1;

// calculate
int result = 0;
while(k > 0){
if(dend>=dor){
dend -= dor;
result &= (1 << k);
}
dor >>= 1;
--k;
}

if(IsNegative)
return result;
else
return -result;
}
avatar
w*g
11
本店不对阿三电视棒提供技术支持. 只回答土共白兔电视棒的问题.

我不知道如何开始
卫东大师?

【在 j***o 的大作中提到】
: 我不知道如何开始
: 卫东大师?

avatar
s*n
12
可以, 只是放电视的那个tab不能关.
但是不影响你用其他的tab.

【在 b********i 的大作中提到】
: 在考虑买一个。
: 4. you cannot turn off your laptop while watching
: 可不可以用laptop上网同时在电视上看片子?

avatar
n*n
13
手机可以吗?

【在 C***C 的大作中提到】
: 据我所知:
: 1. install 'google cast' extension on your 'chrome' browser in your laptop
: 2. play youku, sohu, etc from the 'chrome' browser in your LAPTOP
: 3. click 'cast' extension button on right up corner
: 4. you cannot turn off your laptop while watching

avatar
x*u
14
用Labtop很卡是啥原因?

★ 发自iPhone App: ChineseWeb 7.8

【在 j***o 的大作中提到】
: 我不知道如何开始
: 卫东大师?

avatar
s*n
15
可能是你的router网速问题吧,
我这个用的好好的, 用laptop上的tab cast很流畅啊.

【在 x********u 的大作中提到】
: 用Labtop很卡是啥原因?
:
: ★ 发自iPhone App: ChineseWeb 7.8

avatar
k*u
16
right click on the chromecast icon on your chrome browser, choose 'option',
In 'Tab projection quality' choice ' Standard (480p)'.

【在 x********u 的大作中提到】
: 用Labtop很卡是啥原因?
:
: ★ 发自iPhone App: ChineseWeb 7.8

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。