由买买提看人间百态

topics

全部话题 - 话题: copies
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
g****v
发帖数: 971
1
来自主题: JobHunting版 - 请教下copy list with random pointer
我的代码在我自己机器上没问题,但leetcode上连最简单的case都通不过。
比如 [-1, #] 都没通过。
实在是找不出问题,请大家看看。
----------------------------------------------------------------------------
------------------
RandomListNode *copyRandomList(RandomListNode *head) {
if(head == NULL) return NULL;
RandomListNode *copyhead = new RandomListNode(head->label);
copyhead->random = head->random;
RandomListNode *ori = head->next;
RandomListNode *oritemp;
head->next = copyhead;
RandomListNode ... 阅读全帖
s*******m
发帖数: 58
2
Both Windows and Linux support zero-copy in kernel networking stack.
In Windows, it is implemented through a data structure called NetBufferList,
the data in the form of NetBufferList passes different layers of networking
stack, each layer makes some modification but the original payload is not
copied (so this is called zero-copy). Finally networking device driver copy
the payload inside NetBufferList to onboard buffer of network adapter and
then network adapter send the data.
Linux has mechanis... 阅读全帖
d*******d
发帖数: 2050
3
来自主题: JobHunting版 - 这个copy random link真不容易写对
好吧,我写个copy random graph的通解,对一切graph,tree,list什么的都有效。
区别是O(n)space 复杂度。可以拿来救场。
标准list copy应该是O(n) time, O(1) space.
假设hash class, equal class已经定义好了。
Node * copy(Node * root, unordered_map & rec){
if(root == 0)
return 0;
unordered_map::iterator it = rec.find(root);
if( it != rec.end()){
return it->second;
}else{
Node * newnode = new Node(root);// a new node, copy data
rec.insert(make_pair( root, newnode));
// then copy each ... 阅读全帖
n**********2
发帖数: 648
4
请问各位一个州税相关的问题:
我的公司给我的W-2中, 总共有三份copy(就是W-2下部那些小纸条),
其中,一份注明给federal(注明Copy B), 另外两份给state(注明Copy 2)
我的这两份Copy 2, 一份是" State reference copy" ,另一份是" State Filing Copy
", 两份的底部都注明了"Copy 2 to be filed with employee's State Income
Tax Return".请问, 我file state tax的时候需要两份Copy 2都寄给州税局吗?
谢谢
z****n
发帖数: 5870
5
DFW地区免费copy礼光MKV格式卡拉OK歌库32000首,
上次跑到Houston从阿飞那里copy到了这个曲库,效果还不错。当时答应了阿飞要回
Dallas做种子,结果到现在才有空弄这个。
礼光MKV格式歌库32000首,占用920GB空间. copy时间大概是16~17个小时左右,需要>=
容量1T的硬盘. 最好是移动硬盘。
卡拉OK播放软件也包含其中。详细信息有些在这里可以找到 http://www.mitbbs.com/article_t/HiFi/31202949.html。歌曲应该是2009年前的。因为曾轶可的《狮子座》就没有。。。
如果你有兴趣的话,请站内短信联系我。因为copy的时间很长,而且多次copy的话,对
硬盘磨损也大。看看有多少人有兴趣,我将汇总整个名单(大致按照先来后到和地域远
近划分),然后将采用每个人帮两个人copy的方式传递下去。我将帮离我家最近的两位
copy,然后由他们替另外4位copy,然后再依次传递。
如果你有兴趣,请来信告知你住的地方(譬如说是Allen还是Plano) (如果方便的话,请
一并告知你的cell phone#),我来给大家
p***c
发帖数: 5202
6
http://www.bloomberg.com/news/2012-07-18/apple-must-publish-not
Apple Must Publish Notice Samsung Didn’t Copy IPad in U.K.
By Kit Chellel - Jul 18, 2012 11:29 AM PT
Facebook Share
LinkedIn
Google +1
60 Comments
Print
QUEUE
Q
Apple Inc. (AAPL) was ordered by a judge to publish a notice on its U.K.
website and in British newspapers alerting people to a ruling that Samsung
Electronics Co. didn’t copy designs for the iPad.
The notice should outline the July 9 London court... 阅读全帖
a*****n
发帖数: 14370
7
来自主题: ebiz版 - staples的copy center真搞笑
昨天翻出了大半年前staples寄给我的coupon, 100张free B&W copy。
手上正好有50多张receipt要copy,就准备顺路去copy.
一问,原来:
1.外面随便用的copier 要必须插credit card后才能用,这样就收了钱了,不能
用coupon了。
2. 那就用copy center里面的吧。一定要copy 100或100张以上才能用这个coupon。
---好吧,就浪费你丫的纸,我一张收据复印两张行不行?
3. copy center里面不让我进去,必须由他们的工作人员来动手。
收据小票不能放在auto feeder,必须要放flatbed里面copy,
因为他们付出劳动和汗水了,所以必须每张付20cents,这个不能用coupon减。
你妹的,我还不如直接付10cent一张自己复印?这样的coupon有什么鸟意思?
b*******y
发帖数: 1240
8
以下程序
copyto和clone都执行shallow copy,但是为什么程序里面反映不出来,谢谢
int[] array = new int[] { 1, 2, 3, 4, 5, 6 };
//create shallow copy by CopyTo
//You have to instantiate your new array first
int[] array2 = new int[myarray.Length];
//but then you can specify how many members of original array yo
u would like to copy
array.CopyTo(array2, 0);
//create shallow copy by Clone
int[] array1;
//here you don't nee... 阅读全帖
t*******c
发帖数: 288
9
来自主题: Programming版 - 问个copy constructor的问题
http://stackoverflow.com/questions/1051379/is-there-a-differenc
Delving into Initializations Direct and Copy initialization
While they look identical and are supposed to do the same, these two forms
are remarkably different in certain cases. The two forms of initialization
are direct and copy initialization:
T t(x);
T t = x;
There is behavior we can attribute to each of them:
Direct initialization behaves like a function call to an overloaded function
ones), and the argument is x. Overload resol... 阅读全帖
p****U
发帖数: 109
10
来自主题: JobHunting版 - leetcode Copy List with Random Pointer
RandomListNode *copyRandomList(RandomListNode *head) {
// Note: The Solution object is instantiated only once and is reused by
each test case.
//first parse
if(!head)
return NULL;
RandomListNode *cur=head;
while(cur){
RandomListNode *tmp=cur->next;
cur->next=new RandomListNode(cur->label);
cur=cur->next;
cur->next=tmp;
cur=cur->next;
}
//second parse
cur=head;
RandomListNode *copy;
while(cur){
copy=cu... 阅读全帖
s*******g
发帖数: 1514
11
上海H1b申请要求
* a certified copy of your I-129
* you may also need a certified copy of the I-129 application material
单位律师说他们可以给我certified copy of I-129
但是其他申请H1b时用的材料(比如成绩单等),是我扫描email给他们的,他们不能提供
certified copy。我可以带自己的original copy去面签吗?还是必须要certified
copy?
p*******l
发帖数: 2495
12
来自主题: Immigration版 - 律师让我拿到推荐信的hard copy
I simply repeat what my lawyer told me: if all the letters are copies, they
do not look good.
Can you clarify what do you mean "原件也不需要提交,也是COPY件提交"? Who
made the copies for these originals? I submitted the originals, and kept the
copies myself if I have the originals.
I asked most local recommenders (ie., not international) to give me the
orginals. Before that they emailed me the scanned copy first. So even the
letter is lost in the mail, I can send the scanned copies. None of the
letters are l... 阅读全帖
s***5
发帖数: 453
13
非常感谢大家的安慰和建议!
我的PL就是完完整整一大段一大段的copy,所有的推荐信几乎全都copy一遍,前面是我
提供的research summary, 后面就是 完完整整一大段一大段的copy, 重复了不说,
推荐信里的亮点也体现不出来, 改都不知如何改。
给她写信, 问她是不是copy 的太多了? 有些长? 她说这是他们的标准, “If you
wish, you may try to shorten the quotes.”。 说IO 有可能不看推荐信, 所以
copy 这么多! 但copy 也的有条理吧。 乱! 罗嗦!
f*********t
发帖数: 14
14
原谅我也许吹毛求疵。准备DIY 485. 但I-140申请是律师帮办的。official notice of
approval notice寄给了律师。公司只收到一份'courtesy copy'。然后我只拿到了a
copy of the 'courtesy copy'.
我的问题是,是否the copy of the 'courtesy copy'足够了,还是我必须向前律师要
a copy of the official notice.
再次感谢
L*1
发帖数: 11537
15
中国护照true copy不敢说休斯顿领馆每天都在做,但至少每周会有几个。
所谓certified copy,意思是说内容由发证机构核实无误的,比一般true copy更可信
。ture copy只是说copy是真的,但原件的内容是否真实,甚至原件是否伪造,公证员
并不能做出准确判断。
鉴于这个原因,除非护照是休斯顿领馆签发的,休斯顿领馆即使想做也根本没有办法做
certified copy。
X****r
发帖数: 3557
16
来自主题: Programming版 - copy constructor 问题
Someone already mentioned in this thread: return value optimization.
This is a specific clause allows it:
12.8 Copying class objects
15 Whenever a class object is copied and the original object and
the copy have the same type, if the implementation can prove that
either the original object or the copy will never again be used
except as the result of an implicit destructor call, an
implementation is permitted to treat the original and the copy as
two different ways of referrin... 阅读全帖
m********r
发帖数: 334
17
来自主题: Programming版 - 问个copy constructor的问题
class example {
public:
example(string str){
cout <<"ctor with string "< example() {
cout<<"ctor without string" < example( example& rhs){
cout<<"copy ctor "< };
int main (int argc, char* argv[])
{
string str = "123456789";
example e1(str);
example e2 = str;
example e3 = e1;
example e4 = example();
return 0;
}
这个例子来自C++Primer,在VS2010可以编译,gcc下e2 and e4报错:no matching
function for call to example::example(example)
如果在copy constr... 阅读全帖
c******e
发帖数: 350
18
我几次读到报道,说用next generation sequencing 进行copy number variant的检测
技术还不成熟,因此,high throughput 的copy number variation检测还是用
microarray. 然而,报道的只是个结论,并没有说原因。
版上都是生物技术前沿的斗士们,一定有人会有一些经验和前瞻性的建议。所以,我特
来请教:
1) how microassay is better than next generation sequencing on copy number
detection.
2) If we have a sequencing assay for a targeted gene panel by next
generation sequencing, and want to further detect the copy number variation
on the same genes, what improvement is needed before using the NGS data for
co... 阅读全帖
b***a
发帖数: 494
19
google到很多情况,其中有一个
I applied for my I-140 petition approval notice through FOIA on Feb 17th and
received a letter on Apr5th saying I am not authorized to request for I-140
approval copy and ask my employer to contact USCIS. Following this my
attorney received a notice to intent to review my approved I-140 petition.
如果真让公司知道了貌似不太好
申请的地方http://www.uscis.gov/portal/site/uscis/menuitem.eb1d4c2a3e5b9ac89243c6a7543f6d1a/?vgnextchannel=34139c7755cb9010VgnVCM10000045f3d6a1RCRD&vgnextoid=34139c7755cb9010V... 阅读全帖
M********t
发帖数: 355
20
来自主题: Soccer版 - You Can’t Copy a Style of Play (ZZ)
这个作者, 就是前一阵风靡一时的U11 Possession Soccer录像的教练, 自我吹嘘的厉
害, 不过帖子还是很有营养的。
There are many fundamental issues with talk of ‘style of play’.
I’ll state two (which are intimately linked):
1) You can’t ‘copy’ a style of play. (on the coaching front)
A ‘style of play’ is a specialty – like neurosurgery or cardiovascular
surgery. Yes, it’s all medicine, and yes there are overlapping competencies
, but one practitioner can’t just up and do the other with the same degree
of expertise.
He essentially has to star... 阅读全帖
v****s
发帖数: 1112
21
有一个18GB的压缩包,里面有100k左右个文件。
想把它copy入我的40GB移动硬盘的一个20GB的分区,空间足够大了,但是copy的时候总
是说空间不足。
我把压缩包解压出来,copy进去,结果在copy了65534个小文件的时候报错:cannot
create file/directory.
系统winxp 32bit.....
估计跟32bit系统有关系?或者FAT32??
怎样才能copy进去呢?谢谢
f********a
发帖数: 1109
22
【 以下文字转载自 JobHunting 讨论区 】
发信人: fololunsia (我心飞扬), 信区: JobHunting
标 题: 问一个关于copy constructor的菜鸟问题。。。。。
发信站: BBS 未名空间站 (Mon Jun 4 12:35:15 2007)
有一个程序:
class RVO{
public:
RVO (const RVO& c_RVO) {printf ("I am in copy constructor\n");}
int mem_var;
};
RVO MyMethod (int i)
{
RVO rvo;
rvo.mem_var = i;
return (rvo);
}
void main()
{
RVO rvo=MyMethod(5);
}
为什么输出是1次:
Copy Constructor
而不是2次:
Copy Constructor
Copy Constructor
o*o
发帖数: 404
23
来自主题: Programming版 - copy constructor问题。
A default copy constructor does not do a Bitwise Copy under the following
circumstances
* When the class contains a member object of a class for which a copy
assignment operator exists
* When the class is derived from a base class for which a copy
assignment operator exists
* When the class declares one or more virtual functions (we must not
copy the vptr address of the right-hand class object, since it might be a
derived class object)
* When the class inherits from a virtual bas
r******9
发帖数: 129
24
来自主题: Programming版 - copy constructor 问题
关于什么时候调用copy constructor的问题, 看下面的例子
class cType
{
public:
cType(){}
cType(const cType& obj)
{
cout << "copy constructor is called" << endl;
}

cType namedObj()
{
cType d;
return d;
}
cType pointer()
{
cType *d = new cType();
return *d;
}
};
int main()
{
cType obj;
obj.namedObj(); //这个就不会调用copy constructor
obj.pointer(); //这个就会调用 copy constructor
}
为什么会有这个区别呢? 不是说只要返回值不是reference 就会copy么?
多谢指教
t****t
发帖数: 6806
25
来自主题: Programming版 - 问个copy constructor的问题
需要copy constructor不等于用copy constructor, 注意下面最后一句话.
Otherwise (i.e., for the remaining copy-initialization cases), user-defined
conversion sequences that can convert from the source type to the
destination type or (when a conversion function is used) to a derived class
thereof are enumerated as described in 13.3.1.4, and the best one is chosen
through overload resolution (13.3). If the conversion cannot be done or is
ambiguous, the initialization is ill-formed. The function selected is called
wit... 阅读全帖
b********n
发帖数: 38600
26
Facebook is getting used to copying the Chinese tech giants. Facebook copied
China's messaging app WeChat a few months ago when making plans to
introduce private groups for online communication. See earlier Forbes post:
Facebook Changes Sure Look A Lot Like WeChat.
Now, Facebook is copying again by releasing a payments option within
Facebook, albeit with the twist of cryptocurrency to pay for goods and
services.
https://www.forbes.com/sites/rebeccafannin/2019/06/20/facebook-copies-chinas
-wecha... 阅读全帖
u******t
发帖数: 19
27
因为第一次买车,事先网上也做过很多功课,但签合约的时候还是有很多具体的东西不
是很清楚。
买的新车,是finance的,当时签的一份retail installment contract,给了我一份
buyer's copy,请问这个就是购车合同吗?合约上面没有留空,数额(包括总价,APR
,月付)也都是正确的。今天因为保险公司提到需要给他们寄一份买车合同的copy,才
发现buyer's copy上面只有我的签名,没有dealer的签名。请问这样的话会有什么问题
吗?能不能让dealer在buyer's copy上签名?
非常感谢。。。
s****e
发帖数: 6379
28
有什么用啊,除了copy & print,有啥可以买的吗
Valid in Staples® U.S. stores only. Excludes self-service printing,
computer workstation, Staples Promotional Products, shipping services,
postage stamps, online orders, and gift cards. Each item purchased can only
be discounted by one coupon, applied by cashier in the order received and
prior to tax. Coupon valid only for original recipient and not valid if
purchased or sold and must be surrendered. Not valid on prior purchases or
purchases made with Staples... 阅读全帖
c*******n
发帖数: 63
29
使用reference是避免递归调用copy constructor
A a;
A b = a;
如果不用reference,调用copy constructor的时候需要先copy a作为copy
constructor的参数,这就发生无穷递归了
z****e
发帖数: 555
30
来自主题: Living版 - copy of deed
Hi,
Today received a letter from "Record Transfer Services", asking for $83 for
a copy of deed. I think $83 is too expensive for a copy of deed. Shouldn't I
get a copy for a few dollars or my attorney should provide me a copy for
free?
Thanks
n***u
发帖数: 48
31
来自主题: Overseas版 - Re: 急问F2-F1,sent original i94 or copy?
It is required by USCIS to send the original copy. Check the material list
included in the I539 form instruction.
However, many sent duplicated copy and succeeded in transference while I know
some guys were asked to resend the original copies and thus delayed case
processing.
In case that it would happen, I sent the original copy and got it back intact
after approval.
x*********7
发帖数: 427
32
在德州没有州税,因此不需要这个copy,不知道为什么,那个contractor的公司给我寄
的1099-misc,只有一个给state tax return的copy 2和给receipient的copy B, 我可
以用state tax return的copy 2放在里面去file federal tax return吗? 谢谢,就差
这个问题,就打算到邮局file了。
w*******g
发帖数: 120
33
最近见识了美国移民厅的贪婪。我在4月28日2011,递交了L2renew application, till
now i did not receive any response from USICS. I call them to ask and get
answer that they had mailed out my original copy of L2 on 19 May 2011. I
told them i did not receive it and they ask me submit the Form 820 and paid
for $405 for that duplicate copy. It is really unfair for me. Anybody can
tell me how to avoid the $405 and get the original copy?
thanks
b********e
发帖数: 70
34
公司规定自己出140和485的钱,图方便就用了PERM的律师。现在140批了,问
律师要aproval copy,律师回说:"Since the I-140 is the company's petition, we
cannot provide you with a copy of the approval notice. You may contact me
if you have any questions about AOS (I-485) application." 请问难道我自己出的
钱也没有权利要copy of I-140 approval吗?请教怎么样push律师合作?
485不想被律师绑架,动作慢收费高。可以用别的律师或者自己file吗?是不是一
定要copy of I-140 approval才能file 485?多谢了,在线等。
b********e
发帖数: 70
35
公司规定自己出140和485的钱,图方便就用了PERM的律师。现在140批了,问
律师要aproval copy,律师回说:"Since the I-140 is the company's petition, we
cannot provide you with a copy of the approval notice. You may contact me
if you have any questions about AOS (I-485) application." 请问难道我自己出的
钱也没有权利要copy of I-140 approval吗?请教怎么样push律师合作?
485不想被律师绑架,动作慢收费高。可以用别的律师或者自己file吗?是不是一
定要copy of I-140 approval才能file 485?多谢了,在线等。
i******s
发帖数: 8734
36
来自主题: Immigration版 - Copy of Your Tax Return – How to Get One
http://www.irs.gov/taxtopics/tc156.html
Topic 156 - Copy of Your Tax Return – How to Get One
If you need an actual copy of your return, you should complete and mail Form
4506 (PDF), Request for Copy of Tax Return along with a check or money orde
r for $ 39.00 per tax year made payable to the "United States Treasury". All
ow 60 calendar days to receive your copies.
Most needs for tax return information can be met with a tax return transcrip
t or a tax account transcript, rather than an actual cop
l******5
发帖数: 3030
37
AP 材料清单如下:
I-131 及费 $305(或无费)
Copy of Passport, or Driver License
Copy of I-797A Approval Notice (最近一次入境之后有身份延改)
或 Copy of I-94 Font and Back (无身份延改)
Copy of I-485 Receipt Notice(无收据则附一信亦可)
Two 2" x 2" photos (name & A# on back in pencil)
b********e
发帖数: 70
38
公司规定自己出140和485的钱,图方便就用了PERM的律师。现在140批了,问
律师要aproval copy,律师回说:"Since the I-140 is the company's petition, we
cannot provide you with a copy of the approval notice. You may contact me
if you have any questions about AOS (I-485) application." 请问难道我自己出的
钱也没有权利要copy of I-140 approval吗?请教怎么样push律师合作?
485不想被律师绑架,动作慢收费高。可以用别的律师或者自己file吗?是不是一
定要copy of I-140 approval才能file 485?多谢了,在线等。
L**********1
发帖数: 4
39
来自主题: Immigration版 - 什么是certified copy
国内证件+翻译+公证这是一个certified copy,还是original的,
可是它的复印件算certified copy吗?
如果人家指明要orginal certified copy的话,
那岂不是需要n个公证原件?
(我知道,美国这边法院certified copy上面有钢印的。)
l**********1
发帖数: 84
40
来自主题: Immigration版 - 【O1 申请】推荐信需要hard copy 嘛?
我的律师帮我把5封推荐信写好后,然后 让我 “ensure that the references send
all letters back to you in hard copy. Once received all, please scan them to
us via email as well as send the original in hard copy"
请问有多少case 用的是scanned copy?就是感觉让推荐人send hard copy 比较麻烦人
b********e
发帖数: 70
41
公司规定自己出140和485的钱,图方便就用了PERM的律师。现在140批了,问
律师要aproval copy,律师回说:"Since the I-140 is the company's petition, we
cannot provide you with a copy of the approval notice. You may contact me
if you have any questions about AOS (I-485) application." 请问难道我自己出的
钱也没有权利要copy of I-140 approval吗?请教怎么样push律师合作?
485不想被绑架,动作慢收费高。可以用别的律师或者自己file吗?是不是一
定要copy of I-140 approval才能file 485?多谢了,在线等。
h***y
发帖数: 31
42
来自主题: EB23版 - I-140的 courtesy copy
谢谢答复,我的理解copy应该可以。
可是是不是一定要是original notice的copy,我只有courtesy notice的copy。
你交的时候用的140 copy 有courtesy notice这样字样吗?
l*******n
发帖数: 8388
43
一般140 的批件有两份,公司一份律师一份。你问我怎么知道,因为我律师给了我一份
她的copy,公司的HR把原件直接给我了,两份上面写的清清楚楚的一个是原件一个是律
师的copy。
另外,H1B 6年之后renew肯定需要140 的批件copy,一般renew的package应该给你一份
的。还有就是编理由,签证贷款领导、小孩读书需要这个的copy。
l*******r
发帖数: 33
44
我们律师非要certified copy of marriage license.可是因为结婚的地方和现在居住
地不在一起,好像要certified copy步骤挺费时间的,想问问看大家是不是一定需要
certified copy,其它的办法,好像color copy of original marriage license不可以
吗?
谢谢
x********o
发帖数: 851
45
来自主题: EB23版 - relink的140,485 copy要命啊
搜了一下历史,说是要这些,还是得找律师去要,自己没有。难道大家自己都有吗?
当然我搜的这下面的是从eb2到eb1的,应该也适用于eb2->3.
1. Copy of Form I-797, Approval Notice of the newly approved EB-1 based I
-140 (Beneficiary: xxx, File #: SRC-x/A0x).
2. Copy of Form I-797, Approval Notice of the earlier approved EB-2 based
I-140 (Beneficiary: yyy, File #: LIN-y/A0y).
3. Copy of Form I-797C, Receipt Notice for I-485 (Applicant: yyy, File #:
LIN-y/ A0y).
4. Copy of Form I-797C, Receipt Notice for I-485 (Applicant: xxx, File #:
LIN-x/A0x).
h***o
发帖数: 1494
46
来自主题: Seattle版 - Win9 will copy iCloud
Zune copied ipod
WP copied iPhone
Win8 copied iPad
Win9 copies iCloud
Where is Microsoft's innovation?
L***o
发帖数: 502
47
【 以下文字转载自 MusicVideo 讨论区 】
发信人: Libro (Libro), 信区: MusicVideo
标 题: how to copy audio CD in Library? (转载)
发信站: BBS 未名空间站 (Sat Apr 14 14:46:52 2007)
发信人: Libro (Libro), 信区: DVD
标 题: how to copy audio CD in Library? (转载)
发信站: BBS 未名空间站 (Sat Apr 14 14:43:56 2007)
发信人: Libro (Libro), 信区: ClassicalMusic
标 题: how to copy audio CD in Library?
发信站: BBS 未名空间站 (Sat Apr 14 14:43:23 2007)
Hi,
I know copying CD is not allowed legally, but the CD is very good and I
like it very much, but I do not know h
L***o
发帖数: 502
48
【 以下文字转载自 ClassicalMusic 讨论区 】
发信人: Libro (Libro), 信区: ClassicalMusic
标 题: how to copy audio CD in Library?
发信站: BBS 未名空间站 (Sat Apr 14 14:43:23 2007)
Hi,
I know copying CD is not allowed legally, but the CD is very good and I
like it very much, but I do not know how to copy it in school library. The
problem is that the CD is not allowed out of the library, and the computers
in the library do not have CD copying software installed. I can only use
Microsoft Window Media Player to rip the trac
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)