由买买提看人间百态

topics

全部话题 - 话题: it2
1 2 下页 末页 (共2页)
f******i
发帖数: 11
1
【 以下文字转载自 USTC 讨论区 】
发信人: FIUMiami (FIU-IT2), 信区: USTC
标 题: M.S. and Ph.D. Students Enrollment in IT2 of FIU
发信站: BBS 未名空间站 (Tue Oct 10 15:45:46 2006)
Florida International University
Electrical and Computer Engineering Department
Telecommunication & Information Technology Institute (IT2)
Master of Science in Telecommunication
Track 1: System & Network
Track 2: Management & Policy
Ph. D. in Electrical Engineering
(Telecommunication & Network Concentration)
佛罗里达国际大学(或佛罗里达州立大学迈阿密分校)“电信和网络方向”硕士及博士
f******i
发帖数: 11
2
Florida International University
Electrical and Computer Engineering Department
Telecommunication & Information Technology Institute (IT2)
Master of Science in Telecommunication
Track 1: System & Network
Track 2: Management & Policy
Ph. D. in Electrical Engineering
(Telecommunication & Network Concentration)
佛罗里达国际大学(或佛罗里达州立大学迈阿密分校)“电信和网络方向”硕士及博士学
位是由电信,网络,软件,工程和管理等多门交叉学科创新混合而成,并由世界知名教
授任教。对杰出的学生提供各种奖学金。欢迎各位有兴趣的同学申请!
详细情况,请咨询:
Daniela Madriz
Coordinator, Administrative Services
Telecommunication
p****o
发帖数: 46
3
来自主题: JobHunting版 - 狗家面经
cool. 什么编程语言?第二题, 上个c++:
using namespace std;
list intersect(list intList1, list intList2){
list::const_iterator it1 = intList1.begin();
list::const_iterator it2 = intList2.begin();
list intList3;
while((it1 != intList1.end()) && (it2 != intList2.end())) {
if (*it1 == *it2) {
intList3.push_back(*it1);
++it1;
++it2;
} else if (*it1 < *it2) {
++it1;
... 阅读全帖
E*******0
发帖数: 465
4
来自主题: JobHunting版 - 实现next_permutation
我说下我的算法,大家帮忙看看有没有问题。
#include
class Solution {
public:
void nextPermutation(vector &num) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
if (1==num.size())
return;
vector::reverse_iterator rit;
vector::reverse_iterator it1,it2;
for ( rit=num.rbegin() ; rit < num.rend(); ++rit )
{
rit++;
it1=rit;
rit--;
it2=rit;
... 阅读全帖
E*******0
发帖数: 465
5
来自主题: JobHunting版 - 调试成功的next_permutation代码
// 2 4 7 6 3 1
// it1 it2 it3
// switch it1 and it3
// 2 6 7 4 3 1
// sort it2 to end
// 2 6 1 3 4 7
bool nextPermutation(vector &num) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
//If vector size is 1, permutation is its self.
if (1==num.size())
return true;
vector::iterator rit=num.end();
rit--;
vector::iterator... 阅读全帖
p*****2
发帖数: 21240
6
来自主题: JobHunting版 - [google面试]iterator访问
大概这个样子吧。
class flat implements Iterator
{
Iterator> it1=null;
Iterator it2=null;

void Getit2()
{
it2=null;
if(it1!=null)
{
while(it1.hasNext())
{
Vector v=it1.next();
if(v!=null && v.size()!=0)
{
it2=v.iterator();
return;
};
}
}
}
public flat(Vector> a)
{
if(a!=null)
{
it1=a.iterator();
Getit2();
}
... 阅读全帖
E*******0
发帖数: 465
7
来自主题: JobHunting版 - 实现next_permutation
我的基本想法是
1 2 3 4 5 6
- 从vector的最后一个开始循环,两个指针it1, it2分别指向当前循环指针和之前一个。
for example, 一开始it1指向6,it2 指向5.
- 比较这两个数
a) it1 >= it2 继续循环。这样可以保证所有在it1之后的书是逆序排列。
b) it1 < it2,把it1 to end 中第一个比it2大的数找到,和it2环位置,并且把从
it1 to end的数顺序排列。
- 直到所有的数都是逆序排列。
E*******0
发帖数: 465
8
来自主题: JobHunting版 - 实现next_permutation
我的基本想法是
1 2 3 4 5 6
- 从vector的最后一个开始循环,两个指针it1, it2分别指向当前循环指针和之前一个。
for example, 一开始it1指向6,it2 指向5.
- 比较这两个数
a) it1 >= it2 继续循环。这样可以保证所有在it1之后的书是逆序排列。
b) it1 < it2,把it1 to end 中第一个比it2大的数找到,和it2环位置,并且把从
it1 to end的数顺序排列。
- 直到所有的数都是逆序排列。
e*******i
发帖数: 56
9
来自主题: JobHunting版 - Facebook Phone Interview
#include
#include
#include
using namespace std;
void printEqProducts(int n)
{
typedef unordered_multimap > MyMap;
typedef unordered_map ProductMap;
MyMap resMap;
ProductMap proMap;
for(int i=1; i<=n;i++)
for(int j=1;j<=n;j++)
{
resMap.insert( MyMap::value_type(i*j, pair(i, j)) );
proMap.insert( pair(i*j,i*j) );
}
pair阅读全帖
e*******i
发帖数: 56
10
来自主题: JobHunting版 - Facebook Phone Interview
#include
#include
#include
using namespace std;
void printEqProducts(int n)
{
typedef unordered_multimap > MyMap;
typedef unordered_map ProductMap;
MyMap resMap;
ProductMap proMap;
for(int i=1; i<=n;i++)
for(int j=1;j<=n;j++)
{
resMap.insert( MyMap::value_type(i*j, pair(i, j)) );
proMap.insert( pair(i*j,i*j) );
}
pair阅读全帖
A*****o
发帖数: 284
11
来自主题: JobHunting版 - FB onsite面经加求bless
祝LZ拿到offer ~~
顺便献丑贴个email那题自己的完整代码,真心觉得不简单... 我是用了并查集来
统计合并,
请大牛给个简单点的解法吧,面试中是不可能有时间写这种代码的感觉...
#include
#include
#include
#include
#include
using namespace std;
/*
第二题是有这么一个class Contact,里面有一个String的name,和一个List
装着email address,是这个Contact有的address,用一个list装着是因为一个人有可
能有多个email,现在给你an array of Contact,比如
#1 John [j**[email protected]]
#2 Mary [m**[email protected]]
#3 John [j**[email protected]]
#4 John [j**[email protected], j**[email protected], j**[email protected]]
#5 Bob [bo... 阅读全帖
A*****o
发帖数: 284
12
来自主题: JobHunting版 - FB onsite面经加求bless
祝LZ拿到offer ~~
顺便献丑贴个email那题自己的完整代码,真心觉得不简单... 我是用了并查集来
统计合并,
请大牛给个简单点的解法吧,面试中是不可能有时间写这种代码的感觉...
#include
#include
#include
#include
#include
using namespace std;
/*
第二题是有这么一个class Contact,里面有一个String的name,和一个List
装着email address,是这个Contact有的address,用一个list装着是因为一个人有可
能有多个email,现在给你an array of Contact,比如
#1 John [j**[email protected]]
#2 Mary [m**[email protected]]
#3 John [j**[email protected]]
#4 John [j**[email protected], j**[email protected], j**[email protected]]
#5 Bob [bo... 阅读全帖
s******i
发帖数: 236
13
来自主题: JobHunting版 - 求教EA一道面试题
https://www.hackerrank.com/challenges/unfriendly-numbers
There is one friendly number and N unfriendly numbers. We want to find how
many numbers are there which exactly divide the friendly number, but does
not divide any of the unfriendly numbers.
Input Format:
The first line of input contains two numbers N and K seperated by spaces. N
is the number of unfriendly numbers, K is the friendly number.
The second line of input contains N space separated unfriendly numbers.
Output Format:
Output the a... 阅读全帖
l****c
发帖数: 782
14
来自主题: JobHunting版 - 准备回来跟大家一起练习做题了
My method is that to use two hash_table to store the point_x and point_y.
When we could not find any same value in x_table or y_table, counter++ and
save the new value; When there is at least one same value in either table,
we don't need add counter.
However, I wonder how to use unordered_table more beautiful. Please give me
some suggestion.
int minNumofPoint(vector> point){
unordered_map hash_given_points_x;
unordered_map hash_given_points_y;
hash_given... 阅读全帖
x*****0
发帖数: 452
15
来自主题: JobHunting版 - 两道最近onsite算法题
(2) C++ code:
void split_by_whitespace(string& s, vector& result)
{
stringstream ss(s);
string cur;

while(ss >> cur)
result.push_back(cur);
}
void maxi_assonance(vector& x)
{
vector::iterator it = x.begin();
vector > r;
map key_ind;

for(; it!=x.end(); ++it)
{
string cur = *it;
if(cur[0]=='a' || cur[0]=='e' ||
cur[0]=='i' || cur[0]=='o' ||
cur[0]=='u')
{ ... 阅读全帖
p****o
发帖数: 46
16
oj 在{0, 1}测试的结果是{{1}, {0,1}, {1,0}}
但我自己运行打印出来是{{0,1}, {1,0}}
请大伙帮忙看看。
代码如下
#include "stdio.h"
#include
using namespace std;
class Solution {
public:
vector > permute(vector &num) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
vector v(0);
doPermute(v, num);
return vv;
}

void doPermute(vector &v, vector &num) {
if(num.empty()) {
vv.push_back(v); ... 阅读全帖
t***q
发帖数: 418
17
【 以下文字转载自 Programming 讨论区 】
发信人: treeq (treeq), 信区: Programming
标 题: 天,如何能让程序转得快点?有包子。
发信站: BBS 未名空间站 (Fri Feb 27 23:26:22 2015, 美东)
天,如何能让程序转得快点?
原帖在这里:
http://www.mitbbs.com/article_t0/Programming/31381809.html
主要是要做 title matching.
有两个 file, file A 162283 行 X 12 列。 File B 3695 行 X 6 列。用 A 的 第五
列和 B的第四列进行比较, 对 B 的第四列的每一行, 从 A的 那 162283 行中 找出
与之最相似的那一行。A 的第五列和 B 的第四列都是些影视作品的 title, 是一些长
短不一的 string. 我用的是 Levenshtein algorithm 算每一对string 的相似度,再
把相似度排序,从高到低,找出相似度最大的那一个 string, 也就是影视作品的
title, ... 阅读全帖
t***q
发帖数: 418
18
【 以下文字转载自 Programming 讨论区 】
发信人: treeq (treeq), 信区: Programming
标 题: 天,如何能让程序转得快点?有包子。
发信站: BBS 未名空间站 (Fri Feb 27 23:26:22 2015, 美东)
天,如何能让程序转得快点?
原帖在这里:
http://www.mitbbs.com/article_t0/Programming/31381809.html
主要是要做 title matching.
有两个 file, file A 162283 行 X 12 列。 File B 3695 行 X 6 列。用 A 的 第五
列和 B的第四列进行比较, 对 B 的第四列的每一行, 从 A的 那 162283 行中 找出
与之最相似的那一行。A 的第五列和 B 的第四列都是些影视作品的 title, 是一些长
短不一的 string. 我用的是 Levenshtein algorithm 算每一对string 的相似度,再
把相似度排序,从高到低,找出相似度最大的那一个 string, 也就是影视作品的
title, ... 阅读全帖
t***q
发帖数: 418
19
天,如何能让程序转得快点?
原帖在这里:
http://www.mitbbs.com/article_t0/Programming/31381809.html
主要是要做 title matching.
有两个 file, file A 162283 行 X 12 列。 File B 3695 行 X 6 列。用 A 的 第五
列和 B的第四列进行比较, 对 B 的第四列的每一行, 从 A的 那 162283 行中 找出
与之最相似的那一行。A 的第五列和 B 的第四列都是些影视作品的 title, 是一些长
短不一的 string. 我用的是 Levenshtein algorithm 算每一对string 的相似度,再
把相似度排序,从高到低,找出相似度最大的那一个 string, 也就是影视作品的
title, 加到 file B 对应的那一个title 那一行。再加入一个从file A 出来的对应的
一个id, 到 file B 里。算相似度前,我先对每个title 组成的string做预处理,去掉
“:”,”-“,”season”,”episode “ , 等一些词。... 阅读全帖
t***q
发帖数: 418
20
把 c++ 程序改成这样,快了许多,虽说程序不work,但至少说明,应该在算distance
之前就把 string processing 都做了:
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
size_t uiLevenshteinDistance(const std::string &s1, const std::string &s2)
{
const size_t m(s1.size());
const size_t n(s2.size())... 阅读全帖
E*******0
发帖数: 465
21
来自主题: JobHunting版 - 实现next_permutation
举个例子
1 2 3 4 5 6
找出 4 6 5 3 2 1的next permutation.
it1 -> 6 it2 ->4 since 6 5 3 2 1是逆序排列。
找出 it1 to end 中第一个比4大的数5,(note:这里第一个币it2大的数,不是位置,
是大小上第一个比it2大的数)把5和4位置换一下。
5 6 4 3 2 1 在把6 to end 顺序排列。
so next permutation是 5 1 2 3 4 6。
s*******i
发帖数: 1
22
来自主题: Gowest版 - TA & RA positions available in FIU
There are several Research-Assistant and Teaching-Assistant positions
available in Telecommunication and Information Technology Institute (IT2) at
Florida International University (FIU). Competitive applicants will also be
considered for Presidential Fellowship or Fellowship Enhancement awards.
FIU’s IT2 in the College of Engineering, is a state-funded research institute
charged with the mission of conducting fundamental as well as applied research
in telecommunications and information technolog
h**6
发帖数: 4160
23
来自主题: JobHunting版 - 问个stl的iterator问题
I think you can use a pointer to an iterator as below:
typdef vector vi;
void main()
{
int input[] = {1, 4, 5};
vi weight = vi(input, input+sizeof(input)/sizeof(input[0]));
vi::iterator it1 = weight.begin();
vi::iterator it2 = weight.end()-1;
vi::iterator *pit = new vi::iterator;
if(1+1 == 3)
*pit = it1;
else
*pit = it2;
int result = **pit;
delete pit;
cout< }
E*******0
发帖数: 465
24
来自主题: JobHunting版 - 实现next_permutation
// NextPermutation.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
using namespace std;
#include
bool myfunction (int i,int j) { return (i>j); }
bool nextPermutation(vector &num) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
//If vector size is 1, permutation is its self.
if (1==num.size())
return true;
// rit is the iterator indicates current ite... 阅读全帖
m*****z
发帖数: 89
25
来自主题: TAX版 - 联邦税的文件
F1: 1040_NREZ, 8843 and it2
PS: NY state tax: it203 and it2
准备寄了,不想寄错了
e********3
发帖数: 18578
26
来自主题: Basketball版 - 看来骑士管理层也受够蟹黄了
你这真是看球费电的典型。德隆来的时候最高期待值是第六人老詹下场的时候盘活全队
,IT2虽然身体条件不好但是怎么也是上赛季MVP前六的候选人,他当球队老大肯定走不
远,但是当个冠军队的老三绰绰有余;还有德隆来的时候可没有带来价廉物美的3D球员
Crowder和网队的一轮签,要是IT2不好用还可以跟这签打包再换个全明星球员过来,进
可攻退可守。


: 德隆来的时候也是介样意淫的 lol

t****z
发帖数: 8931
27
来自主题: Military版 - 今天去大使馆申请签证 (转载)
【 以下文字转载自 Travel 讨论区 】
发信人: tgbqaz (qz), 信区: Travel
标 题: 今天去大使馆申请签证
发信站: BBS 未名空间站 (Sat Apr 2 02:05:10 2011, 美东)
人这个多啊
有几个人相当的贱
申请美国签证龟孙子一样
申请中国签证
材料不全,在窗口死打烂缠20分钟,硬要别人给他签,
我嘲笑了it2句,这个猥琐男还和我吵
真想给他2个嘴巴啊
还有个猥琐男本事更大,
排着队能偷偷往前移,
不知不觉把前面2个华人1个加拿大人挤到后面。
真想给他屁股上1脚啊
u***r
发帖数: 4825
28
来自主题: Military版 - 被低估的华为
http://www.cb.com.cn/companies/2014_0604/1063999.html
【中国经营网注】华为,一个以“狼性文化”著称的全球通信设备制造企业,被冠
以“神秘”、“封闭”、“不开放”的名号,然而却很少真正有人领略了华为的实力。
这家公司已经在很多IT领域有所建树,甚至已经到了可怕的程度。
据21世纪经济的报道,尽管华为早已是中国IT产业的旗帜,但是,它依然是一家被
低估的企业。在BAT们大行其道、互联网企业站在舞台中央的时候,这种低估就更为明
显了。
在电信设备、企业网和手机三个领域,华为已经是电信设备领域的王者无人争议,
与爱立信共同处于产业链最顶端。2013年华为来自电信领域的营收仅次于爱立信,总收
入则超过了爱立信,利润更是高居行业第一。对华为的低估,主要源自企业网和手机领
域。大多数人只看到华为的手机,对它的低估显得很正常。毕竟,它在这个领域还显得
有些蹩脚,对消费者的把握能力还显得简单粗暴,虽然也正在初步找到感觉。但是,一
旦回到B2B领域,华为的实力就显得那么可怕,像是一支训练有素的军队。
IT战场的幼狮
先看一组不怎么被媒体关注的数字。
服... 阅读全帖
l*********8
发帖数: 4642
29
来自主题: JobHunting版 - 求教EA一道面试题
倒数第6行:
divisors.erase(*it1) 改成
divisors.erase(*it2)
就行了。
我试过了,可以通过。

N
s*****r
发帖数: 43070
30
【 以下文字转载自 Dreamer 讨论区 】
发信人: Dreamer (不要问我从哪里来), 信区: Dreamer
标 题: 关于CS,一些你不知道的东西(附加一些东西让准备转专业的人看清现实)zz
发信站: BBS 未名空间站 (Mon Apr 20 07:42:27 2015, 美东)
转载自gter,问大家如何看?
http://bbs.gter.net/thread-1717877-1-1.html
irvine666:
应wang同学的要求,我来说点关于CS的东西。
为了增加可信度,先介绍一下自己。我本科毕业于上海交通大学计算机系,后在上海从
事IT2年,期间曾经试图创业但失败。然后申请美国大学硕士拿到半奖出国,毕业后到
加州硅谷一家超大型公司从事IT工作。后因为一些原因跳槽到总部在波士顿的另一家超
大型公司接着做IT到现在。所以我可以保证:看一下这篇文章并不会浪费我们共同的时
间。
首先必须承认,CS是最近10年来在美国最好找工作的职业,这点各位差不多都已经知道
了,但是接下来的一些东西会让你们知道为什么宣传转CS的都是一些非CS专业的人,真
正的CS从业者很少会劝... 阅读全帖
s*****0
发帖数: 9
31
来自主题: JobHunting版 - 报个offer
lz总共工作5年不到,3年IT2年data science。有个cs硕士。 拿了微软和另外一家电商
的DS。 可惜微软只给了ds1, 贝斯11万,股票几乎没有。signon 5k。 也不明白为啥
微软还是给60 不是61 呢。 不过也来不及面别的了 估计两个里面选一个吧。 另外电
商给差不多base,股票给一万一年。 不知道为下家准备的时候 是微软好些还是这种
online retailer好些呢 想听听大家意见
d******n
发帖数: 1713
32
来自主题: Money版 - discover水很深哈
目前有四种卡,网站上没有sort
1. more 据说是垃圾,本来打电话想转会it
2. miles 不能online申请,不知道怎么样?是买机票还是转点到航空公司
3. it1, 平常1%,季节性5%
4. it2, 油和饭常年2%,其它1%,但没季节性5%了
感觉discover真是没落了现在
chase的崛起,让discover10年前的优势不再哈呵呵
k******p
发帖数: 1
33
就是表格右下角那个barcode.
是否需要到网站上去填,然后生成一个自己特定的条形码呢?
还是说,下载了pdf以后手填寄出去就好了?
c**********u
发帖数: 984
34
来自主题: TAX版 - L1签证首次报税完毕总结
留个印在这里
情况如下,已婚(LD L2),NY工作,NY居住。时间2009OCT-YEAR END,只有工资收入.时
间不够180天,合并报税(网上N多误导说非居民不能合并报,如果不能合并报,为啥人
家FORM上有married filling Joint return的选项) 填1040NR-EZ和NY IT203.都是
DIRECT DEPOSIT.自己根据INSTRUCTION 填写。
FED REFUND交材料:1040NR-EZ和W2
NY STATE AND CITY REFUND交材料:IT203,IT2,W2.
倒是不复杂,按程序一行行下来,1个小时搞定。
上报时间:2010年3月初
FED REFUND到帐时间: 2010年4月初。到帐金额等于申报金额。
NY TAX 通知补材料:2010年4月初。补W2、雇主HR证明信和雇主FED ID NUMBER,2009年
12月的PAY STUB。(这一点至今未解,W2上面都有的信息为啥要补)
NY TAX REFUND到帐时间: 2010年7月末。到帐金额小于申报金额(少了约30%)。
综合税率如下:
FED INCOM
t********b
发帖数: 128
35
来自主题: TAX版 - NY tax
could anyone please confirm all the tax forms for NY resident?
it203, it2, anything else?
tahnks so much!
deadline is today...
h******7
发帖数: 980
36
谢谢,那是不是只要IT201和IT2就可以了,不用寄联邦税的复印件吧?
f********t
发帖数: 6999
37
【 以下文字转载自 Dreamer 讨论区 】
发信人: Dreamer (不要问我从哪里来), 信区: Dreamer
标 题: 关于CS,一些你不知道的东西(附加一些东西让准备转专业的人看清现实)zz
发信站: BBS 未名空间站 (Mon Apr 20 07:42:27 2015, 美东)
转载自gter,问大家如何看?
http://bbs.gter.net/thread-1717877-1-1.html
irvine666:
应wang同学的要求,我来说点关于CS的东西。
为了增加可信度,先介绍一下自己。我本科毕业于上海交通大学计算机系,后在上海从
事IT2年,期间曾经试图创业但失败。然后申请美国大学硕士拿到半奖出国,毕业后到
加州硅谷一家超大型公司从事IT工作。后因为一些原因跳槽到总部在波士顿的另一家超
大型公司接着做IT到现在。所以我可以保证:看一下这篇文章并不会浪费我们共同的时
间。
首先必须承认,CS是最近10年来在美国最好找工作的职业,这点各位差不多都已经知道
了,但是接下来的一些东西会让你们知道为什么宣传转CS的都是一些非CS专业的人,真
正的CS从业者很少会劝... 阅读全帖
J*******s
发帖数: 2708
38
来自主题: Basketball版 - 说到用脑子和技巧打球
因为今年fantasy里有it2和DMC,没少看国王的球,每次看Jimmer上来就蛋疼,绝对的D
-league水平,在D-league都会被完爆,丫其实是sg,控球传球水平非常业余
s******r
发帖数: 21961
39
来自主题: Basketball版 - 今晚的骑绿之战,火上浇油
欧文看来在骑兵有满肚子的冤屈:
Kyrie Irving said part of the reason he decided to leave the Cavs was that
he felt like they didn't want him there.
"[Leaving Cleveland] was inevitable," Irving said. "I could feel it... They
didn't want me there." Irving reportedly caught wind of the Cavs front
office including his name in trade talks back in June, which was a factor in
prompting him to request a trade out of Cleveland. For what it's worth when
LeBron James was asked about Irving's assertion that the Cavs didn't... 阅读全帖
s******r
发帖数: 21961
40
来自主题: Basketball版 - 看来IT2要回西部了
https://sports.yahoo.com/sources-cavs-expressing-interest-deal-kings-guard-
george-hill-212652384.html
This report adds the Cavs are pursuing Hill to potentially slide into a dual
-guard role, starting at either backcourt position or playing as a reserve.
This will be a lot easier said than done because Hill just signed a massive
three-year, $57 million deal this summer, so there will probably have to be
other teams involved. Now that Hill is going to be rested, a trade could
help his fantasy va... 阅读全帖
s******n
发帖数: 7166
41
来自主题: Basketball版 - 看来IT2要回西部了
要出动拦网签了? 可以把IT和JR送走就算是赚了

dual
.
massive
be
best
C*****l
发帖数: 3211
42
来自主题: Basketball版 - 看来IT2要回西部了
要是扔了篮网签,骑士更要玩完了。
k*2
发帖数: 2867
43
来自主题: Basketball版 - 看来IT2要回西部了
骑士总是处在买卖腿的风波中,军心涣散,谁还给老詹卖命?

dual
.
massive
be
best
k*2
发帖数: 2867
44
来自主题: Basketball版 - 看来IT2要回西部了
篮网签是老詹跑路后重建用的,不会动吧?
s******r
发帖数: 21961
45
来自主题: Basketball版 - 看来IT2要回西部了
乔希经纪人真烂啊,砸了夹子的大合同,现在要到处流浪。
s******r
发帖数: 21961
46
来自主题: Basketball版 - 看来IT2要回西部了
https://sports.yahoo.com/sources-cavs-expressing-interest-deal-kings-guard-
george-hill-212652384.html
This report adds the Cavs are pursuing Hill to potentially slide into a dual
-guard role, starting at either backcourt position or playing as a reserve.
This will be a lot easier said than done because Hill just signed a massive
three-year, $57 million deal this summer, so there will probably have to be
other teams involved. Now that Hill is going to be rested, a trade could
help his fantasy va... 阅读全帖
s******r
发帖数: 21961
47
来自主题: Basketball版 - 扣篮
IT2/小虫/小土豆 也是一档
s******r
发帖数: 21961
48
感觉乐邦不续签,老板放弃了。
乐邦希望老板砸大钱签大腿,但老板觉得要赔钱了不干。
所以现在等于老板逼大鹏D3,如果他不走,那老板就有更多的bargain power了。
球员也贼精,都保护自己。
IT2倒是很想打出来,拿份大合同,但没有队员和他配合,他也不是answer。
s******r
发帖数: 21961
49
来自主题: NBA版 - 开了个骑绿对砍
对砍难成,IT2不上。
明显骑兵队下风。
s******r
发帖数: 21961
50
来自主题: NBA版 - 破骑被吊打
亏惨了。我看到IT2上,还追加到满注。
1 2 下页 末页 (共2页)