由买买提看人间百态

topics

全部话题 - 话题: list1
1 2 下页 末页 (共2页)
p*y
发帖数: 108
1
来自主题: JobHunting版 - 最新L家面经
店面是两个中国人,一开始知道是国人还比较欣喜. 结果证明完全不是这么回事,反而感
觉很严格,最终挂了. 请大家分析下为啥挂? 难道第二题没有按面试官心中理想的答案
在面试时给他写出来? 以后看来一定要注意时间.
1. two sum
一开始根据题目理解以为是排好序的数组, 于是从两头开始找:
boolean twoSum(int[] nums, int sum){
if(nums==null || nums.length<2)
return false;
int low = 0, high = nums.length-1;
while(low if( (nums[low]+nums[high]) == sum ){
return true;
}else if((nums[low]+nums[high]) < sum){
low++;
}else{
... 阅读全帖
g**u
发帖数: 583
2
来自主题: JobHunting版 - Google Onsite 面经
用stl的priority_queue写了下multi-way merge, 请大家拍砖。
其中: myPair的第一个就是要存储的值, 第二个表示ownership.
/*
*multiple way merge using the priority_heap
*/
#include "vector"
#include "queue"
class myPair{
friend std::ostream & operator<<(std::ostream & out, const myPair &p)
{
out<<" ( "< return out;
}
public:
myPair(int x, int y):_first(x),_second(y)
{
}
bool operator >(const myPair & p)const
{
return this->_fir... 阅读全帖
f*******t
发帖数: 7549
3
来自主题: JobHunting版 - 狗店面,求BLESS
层序遍历+hashmap解法。动手写+test大概25分钟
public static boolean compareTrees(TreeNode tree1, TreeNode tree2) {
if (tree1 == null && tree2 == null)
return true;
else if (tree1 == null || tree2 == null)
return false;
HashMap map = new HashMap();
LinkedList list1 = new LinkedList();
LinkedList list2 = new LinkedList();
list1.add(tree1);
list2.add(tree2)... 阅读全帖
P*P
发帖数: 36
4
来自主题: Java版 - ArraList question
为什么list的结果是[[A,B][A,B]],而不是[[a,b][A,B]]
请各位高手指点,谢谢
ArrayList list1 = new ArrayList();
ArrayList list = new ArrayList();
list1.add("a");
list1.add("b");
list.add(list1);

list1.set(0, "A");
list1.set(1, "B");
list.add(list1);

发帖数: 1
5
来自主题: JobHunting版 - 脸家电话面试面筋
第二题:
List* flattenToLL(Node* root) {
List *list1 = (root->left) ? flattenToLL(root->left) : NULL;
List *list2 = (root->right) ? flattenToLL(root->right) : NULL;
root->left=NULL
root->right=list2
// The "middle" list3 cannot be NULL; append list2 to list3
if (!list1) return root; // Nothing to prepend
List *last = list1;
while (last->right) last=last->right; // Go to the end of list1
last->right = root; // Append list3+list2 to the end of list1
return list1... 阅读全帖
s*****n
发帖数: 2174
6
来自主题: Statistics版 - R 问题
如果你的初始点就是 list1 和 list2, 估计必须要写循环. lapply只能对单一list的
元素应用某个函数, 好像不能对不同list的对应元素应用函数.
如果list1和list2是你自己生成的, 那你可以在生成他们的步骤里面做一些工作, 把他
们放入同一个object里面, 就可以在后续步骤使用lapply了. 比如做一个大的list a,
每个元素A[[i]] 是一个以 list1[[i]] 和 list2[[i]] 组成的小list. 或者干脆就给
list1[[i]] 定义一个attributes 叫 delete, 赋值为 list2[[i]].
反正原则就是尽量把list1 和 list2 给放入同一个object里面.
s*****n
发帖数: 2174
7
来自主题: Statistics版 - R问题:给定一些日期,找出其中
setdiff 挺好的, 简明易懂, 一般用途足可以了, 唯一的缺点可能是速度稍慢. 如果
你非常在意执行效率(速度), 可以考虑is.element.
> list1 <- as.Date(c("2004-11-12", "2004-11-17", "2004-11-18", "2004-11-23"))
> list2 <- seq(from = min(list1), to = max(list1), by = "1 day")
>
> system.time(for (i in 1:10000) setdiff(list2, list1))
[1] 2.46 0.00 2.47 NA NA
> system.time(for (i in 1:10000) list2[!is.element(list2, list1)])
[1] 0.67 0.00 0.67 NA NA
l*****k
发帖数: 587
8
来自主题: Statistics版 - sas proc transpose can do this?
I can do it in R, but not sure if sas can also handle it.
I have 26 lists, now I want to generate their pairwise overlaps
I did the overlap in R, now the output is
list1 list2 both_up both_down
a c x x
a b x x
a c x x
.
.
.
b a x x
b b x x
.
.
.
list1 is actually list2, the whole paiwise comparison has 26*26 row
can I transform it to matrix format using proc transpose?
the result should have list1 as ro... 阅读全帖
s******c
发帖数: 1920
9
来自主题: JobHunting版 - 问三道题
第二题:
对list1生成一个摘要(比如一个hashtable或者一个bloom filter)
然后在enumerate list2中的每个元素, 检查其是否hit那个摘要, 并记录所有结果为
positive的元素,存入list2'
然后对于list2' 的元素再做一遍摘要来筛一遍list1 得到list1'
这时list1'和list2'的元素已经很相近了,再来分别sort一下,然后来找.
对于巨大的文件, 上述两个筛数的过程可以用mapreduce来完成.

you
will
in
l*
amotized
m******i
发帖数: 26
10
来自主题: JobHunting版 - Leetcode一题(非OJ)
新手问一下,这里面试可以是用现成的function 吗,还是每一行都要自己码? 比如
PHP
$S1 = "q a b c d";
$S2 = "a b c d e";
$list1 = array_unique(explode(' ',$S1));
$list2 = array_unique(explode(' ',$S2));
$work_list1= $list1;
$work_list2= $list2;
for($i=0;$i if (($key =array_search($list2[$i],$work_list1)) !==false) {
unset($work_list1[$key]);
}
}
for($i=0;$i if (($key =array_search($list1[$i],$work_list2)) !==false) {
unset($work_list2[$key]);
}
}
pri... 阅读全帖
l******9
发帖数: 579
11
【 以下文字转载自 Statistics 讨论区 】
发信人: light009 (light009), 信区: Statistics
标 题: a hash embedded with another hash in R
发信站: BBS 未名空间站 (Fri Apr 11 15:56:40 2014, 美东)
This question is related to my previous question.
I need to design a hash that is embedded with another hash in R in Rstudio
on Win 7.
library(hash)
myf <- function()
{
h1 <- hash()
if (!has.key("first", h1))
{
list1 <- list()
h1.son<- hash()
h1.son["first_son"] <- list1
h1["first"] <- h1.son
}
# second check
if(!has.key("first_son... 阅读全帖
y*******5
发帖数: 887
12
来自主题: JobHunting版 - 求指点一道G家Iterator的题目
用composition pattern:
1:---
package NestedIterator;
public interface NestedNodeList extends Iterable {
}
2:---
package NestedIterator;
import java.util.Iterator;
public class Node implements NestedNodeList {
private E val;
public Node(E val) {
this.val = val;
}
@Override
public Iterator iterator() {
return new NodeIterator();
}
private class NodeIterator implements Iterator {
private boolean iterated = false;
@Override... 阅读全帖
c*********e
发帖数: 16335
13
java里面一般是用IEnumerable list1 = new List();
把你的code写成这样,试试能不能run:
public static IEnumerable GetCollection()
{
IEnumerable list1 = new List();
list1.Add(1);
return list1;
}
A**o
发帖数: 1550
14
来自主题: Java版 - ArraList question
ArrayList listlist = new ArrayList();
ArrayList list1 = new ArrayList();
list1.add("a");
list1.add("b");
listlist.add(list1);
ArrayList list2 = new ArrayList();
list2.set(0, "A");
list2.set(1, "B");
listlist.add(list2);
u****s
发帖数: 2186
15
来自主题: Java版 - Java练习题 12
1. List list1 = new ArrayList ();
2. list1.add("test");
3. List list2 = list1;
4. List list3 = list1;
A. Compile error (which line?)
B. Runtime error (which line?)
C. No error
q*********u
发帖数: 280
16
来自主题: Java版 - Java练习题 12
那就是A了
line 4 error:
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
Type mismatch: cannot convert from List to List
at containerStudy.ArrayL.main(ArrayL.java: ***我把行号给藏了)

1. List list1 = new ArrayList ();
2. list1.add("test");
3. List list2 = list1;
4. List list3 = list1;
A. Compile error (which line?)
B. Runtime error (which line?)
C. No error
l******9
发帖数: 579
17
【 以下文字转载自 Statistics 讨论区 】
发信人: light009 (light009), 信区: Statistics
标 题: a hash embedded with another hash in R
发信站: BBS 未名空间站 (Fri Apr 11 15:56:40 2014, 美东)
This question is related to my previous question.
I need to design a hash that is embedded with another hash in R in Rstudio
on Win 7.
library(hash)
myf <- function()
{
h1 <- hash()
if (!has.key("first", h1))
{
list1 <- list()
h1.son<- hash()
h1.son["first_son"] <- list1
h1["first"] <- h1.son
}
# second check
if(!has.key("first_son... 阅读全帖
l******9
发帖数: 579
18
【 以下文字转载自 Statistics 讨论区 】
发信人: light009 (light009), 信区: Statistics
标 题: a hash embedded with another hash in R
发信站: BBS 未名空间站 (Fri Apr 11 15:56:40 2014, 美东)
This question is related to my previous question.
I need to design a hash that is embedded with another hash in R in Rstudio
on Win 7.
library(hash)
myf <- function()
{
h1 <- hash()
if (!has.key("first", h1))
{
list1 <- list()
h1.son<- hash()
h1.son["first_son"] <- list1
h1["first"] <- h1.son
}
# second check
if(!has.key("first_son... 阅读全帖
T******r
发帖数: 265
19
来自主题: Statistics版 - R 问题
如果我有list1 list2
list1[[i]] 是一个data frame
list2[[i]] 是list1[[i]]的delete index vector
我想把list1[[i]]中对应list2[[i]]的列删掉,可不可以用类似apply的function而不
用循环?
l******9
发帖数: 579
20
来自主题: Statistics版 - a hash embedded with another hash in R
This question is related to my previous question.
I need to design a hash that is embedded with another hash in R in Rstudio
on Win 7.
library(hash)
myf <- function()
{
h1 <- hash()
if (!has.key("first", h1))
{
list1 <- list()
h1.son<- hash()
h1.son["first_son"] <- list1
h1["first"] <- h1.son
}
# second check
if(!has.key("first_son", h1["first"]))
{
list1 <- list()
h1.son<- hash()
h1.son["first_son"] <- list1
h1["first"] <- h1.son
}
}
myf()
Why in "second check ", h1["first"] st... 阅读全帖
f*******r
发帖数: 1086
21
来自主题: JobHunting版 - 请教amazon面试题
一个函数Node* Func(Node* list1, Node* list2)
输入是2个singly linked list,node datatype是int
有可能存在duplicate在input list中,要求返回一个
新的list包含在list1但是不在list2中的元素,同时要求
新的list没有duplicate。
要求,速度越快越好,可以用多余的mem。
我想了一下,最好是有一个hashtable可以记录哪些值在
list1里面,然后在loop list2去check删除那些相同的值,
有一个问题就是,这里的input datatype是int,我并不知道
数值范围,可能很大,这个题目要求coding,我应该如何建立
这样的一个hashtable? 如果用C/C++。
请大家给些建议,非常感谢了!
P**********c
发帖数: 3417
22
来自主题: JobHunting版 - 某公司面试经历
第3题应该是扫一遍吧,两个指针分别指向两个list, 如果碰到list1的,list1的++,
如果碰到list2的list2的++. 如果碰到不是当前list1 or list2的指针指向的则退出。
reference判断是不是一样应该判断他们的地址是不是一个?
第2题careercup上写程序的是有障碍的情况。一般情况只给了公式。这个是一般情况写程序吗?
第5题也是careercup上的原题。
第6题同样没看懂。URL shortening怎么跟cache, loading balancing什么联系上的?是说hashtable放在不同的机器上所以要考虑distributed system的问题么?
c****7
发帖数: 13
23
来自主题: JobHunting版 - 请教各位大牛一个K-way merge 的问题
各位大牛,请看看下面这个算法, 这个是不用heap的算法。
我觉得complexity 是 O(k*n), k是list 的个数, n 是list的平均长度。
那是不是这个应该比用heap的更好点啊?
public static ListNode mergeKLists(ArrayList kLists) {
if (kLists==null)
return null;
if (kLists.size()==0)
return null;
// if there is only one list in kLists
if (kLists.size()==1)
return kLists.get(0);
int length = kLists.size();
// initialize the curList with the first item in the list
ListNo... 阅读全帖
s*****1
发帖数: 134
24
来自主题: JobHunting版 - 贡献1个A家3面的面经,被老印坑了
我也是这么想的,先sort,再merge, 不过这个思路好像不太对额~
list1 (1,4)(2,5)
list2 (1,5)
按照这个思路,list2是能放进list1去的,因为list1 merge完后是(1,5)
但是实际上 (1,5)放不到以上任何一个去额
n****r
发帖数: 120
25
public static void removeCommon(String[] s){
Set set = new HashSet();
Set commonSet = new HashSet();
String[] list1 = s[0].split("[ ]+");

for (String w : list1){
set.add(w);
}

String[] list2 = s[1].split("[ ]+");
StringBuilder sb = new StringBuilder();
for (String w : list2){
if (!set.contains(w))
sb.append(w + " ");
else
commonSet.add(w);
}
if(sb.length() > 0)
... 阅读全帖
N**********i
发帖数: 34
26
我就是这么做的.
第二题反过来做也可以,先扫一遍list2,然后扫list1,根据在list1中出现的个数生
成新的数组,对于list2中出现的list1中没出现的就直接加在后面...
a******d
发帖数: 82
27
来自主题: JobHunting版 - 请教一个面试算法题
Merge List
Given two lists of items (list1 and list2), each list is sorted based on
the
weight in ascending order. Now merge list1 and list2.
return a sorted merged list.
条件:
If one item in list1 has the same id as an item in list2, combine these two
items into one item and the weight is sum of the two previous weights.
Class Item{
int id;
float weight;
}
剩的时间太少, 想了一会没想出来, 感觉应该有个O(n)的解法. 感觉应该是个merge
sort 的变形
请大家指教了, 谢谢
o**********a
发帖数: 330
28
大家能不能给解释一下下面的code。
看书上写的interface 里面只包含着一些method的declaration. 为什么下面这个例子
,interface可以成为一个function的return type呢?
大家能不能给科普一下
public static IEnumerable GetCollection()
{
List list1 = new List();
list1.Add(1);
return list1;
}
w***f
发帖数: 75
29
来自主题: Internet版 - Gmail 使用技巧
from : http://www.smth.edu.cn/pc/index.php?id=lylp
1,GMail Acc的id是不计算 "." 的,所以可以 a.b@gmail, ab@gmail 都是同一个邮箱。
2,它內建 filter 跟 label (webmail 有 label真少见到), 所以可以用 + 来帮助设置
filter, 如 ab+list1@gmail 跟 ab+list2@gmail 都可以送到 ab@gmail, 然而 filter
写一下就會把 +list1 跟 +list2 分开了。
比如对应label1,可以写From :i*[email protected] To a******[email protected]这样,通过filter的
设置 ,所有来自i*[email protected]的邮件,会自动分拣到label中。
3,GMail是全 UTF-8 的系統,所以基本上它可正常处理多个国家的语言,但是有时候发过
去的信件可能有乱码,比如yahoo的邮箱,收到的是乱码,但是只要点击IE/查看/编码/选择
UTF-8编码,就可以正常显示了。
4,gmail的search暂时只支持英
s***o
发帖数: 175
30
昨天手头刚好有几万个URL, 试了一下:
list1: 2000 URLs
list2: 3000 URLs
从list1取的每一个URL, 去和list2的3000个URL比较,找出最相似的,用时约1秒,
全部用时不到40分钟。
没做任何优化,只是把所有需要计算的URL放入两个generator:
generator1 = (url for url in list1)
generator2 = (url for url in list2)
每个URL平均50个字符,不懂有没有可比性。
z****n
发帖数: 67
31
对下面这个data set我想实现的是针对每一行检查相应的变量var1 到变量var6。 如果
值在0 到
50之间的话,就把每一个相应的变量名称存在一个macro variable,并且以空格隔开。
所以最终
我要的结果是:
根据第1行有个macro variable叫做list1, 在list1里面存有变量var6
根据第2行有个macro variable叫做list2, 在list2里面存有变量var5 var6
根据第3行有个macro variable叫做list3, 在list3里面存有变量var4 var6
根据第4行有个macro variable叫做list4, 在list4里面是空的
并且每一行的新建的宏变量名,都要以该行的行序数结尾,比如1到4行,宏变量名相应
的为list1到list4
关键难点在于实际工作中我有300多个变量,所以必须一开始就把满足条件的变量名存在宏变量里
面,因为宏变量不会有长度的问题。如果先建立一个string变量存储那些满足条件的变量名,然后
再放到宏变量里面结果会有问题。因为string变量的长度会不够(SAS字符变量最大长度是200
a*****p
发帖数: 1285
32
来自主题: ebiz版 - ebay报复,可行吗?
我平时基本不用ebay。昨天list了2个小东西(一样的东西expiration date不同),其
中一个有一个typo。 同一个buyer先买了我list1,后又买了我list2。因为buyer下单
太快了。等到过几分钟我发现typo的时候发现buyer已经买了,list1付了款,list2没
付款。
我就发邮件好心说,我说因为我发现了一个typo,为了保护你的利益,我可以cancel
order。buyer回复说,因为我有typo,我必须降价,15%。 15%也就是4块钱的东西。但
是这个行为很讨厌,我就直接把2个单cancel了。 然后buyer就发邮件使劲地破口大骂
,还留了恶评。
因为buyer发邮件大骂,我看了他的历史,感觉他是”职业“倒卖的。
我打算报复:我买他的东西,然后装没受到,或者收到有问题,要求退款,然后给差评
,可行吗?
x***i
发帖数: 64
33
来自主题: JobHunting版 - G家店面
刚店面完,口头答应recommand onsite, 不知最终如何
先聊天,took about 15 minutes.. 然后上题, 先问思路和算法,然后写pcode, read
over the phone
题目大概是这样
social network, billions id, every id has about 100 friends roughly, what is
max connections between any two ppls. write algorithm to return min
connections between two ids: int min_connection(id1, id2)
you can call following functions
expand(id) return friends list of id
expandall(list) return friends union of all the ids in the list
intersection(list1, list2) return intersection
re... 阅读全帖
x***i
发帖数: 64
34
来自主题: JobHunting版 - G家店面
刚店面完,口头答应recommand onsite, 不知最终如何
先聊天,took about 15 minutes.. 然后上题, 先问思路和算法,然后写pcode, read
over the phone
题目大概是这样
social network, billions id, every id has about 100 friends roughly, what is
max connections between any two ppls. write algorithm to return min
connections between two ids: int min_connection(id1, id2)
you can call following functions
expand(id) return friends list of id
expandall(list) return friends union of all the ids in the list
intersection(list1, list2) return intersection
re... 阅读全帖
l***i
发帖数: 1309
35
来自主题: JobHunting版 - 4sum的那道题
Seems you can do O(n^2 log n)
For each pair of numbers, you can get a total of n^2 two-number sums.
Sort them cost O(n^2 log n)
Then you can use your target value T - each sum to get n^2 values sorted.
Then your job is to find whether there are two numbers that sum to any of
those n^2 values. This can be done by merge two sorted lists:
list1: a[i]+a[j] for each 1<=i,j<=n
list2: T-(a[i]+a[j]) for each 1<=i,j<=n
if list1 and list2 have a match, then a[i1]+a[j1] = T-(a[i2]+a[j2]) and that
is the sa... 阅读全帖
l***i
发帖数: 1309
36
来自主题: JobHunting版 - 4sum的那道题
Seems you can do O(n^2 log n)
For each pair of numbers, you can get a total of n^2 two-number sums.
Sort them cost O(n^2 log n)
Then you can use your target value T - each sum to get n^2 values sorted.
Then your job is to find whether there are two numbers that sum to any of
those n^2 values. This can be done by merge two sorted lists:
list1: a[i]+a[j] for each 1<=i,j<=n
list2: T-(a[i]+a[j]) for each 1<=i,j<=n
if list1 and list2 have a match, then a[i1]+a[j1] = T-(a[i2]+a[j2]) and that
is the sa... 阅读全帖
h*******n
发帖数: 614
37
来自主题: JobHunting版 - FB面经~
我用的就是你的算法
public void printBinaryWithLength(int n){
System.out.print(getBinaryWithLength("", n));
}
private ArrayList getBinaryWithLength(String prefix, int n) {
ArrayList result = new ArrayList();
if(n==0){
result.add(prefix);
return result;
}
ArrayList list1 = getBinaryWithLength(prefix+"0", n-1);
ArrayList list2 = getBinaryWithLength(prefix+"1", n-1);
result.ad... 阅读全帖
m***k
发帖数: 946
38
来自主题: JobHunting版 - 请教leetcode的gray code
擦的。。。想出来了
假设有n-1的答案为:G0, G1, ..., Gn,想得到n的答案,只需要在G0...Gn左边加上一
个0,再把G0...Gn颠倒顺序,在左边加上一个1即可。
举例,n=3, 先求n=2, 为:
00,01,11,10
反序,为:
10,11,01,00
在原序每个元素左边加0,得到
list1: 000,001,011,010
反序左边加1,得到
list2: 110,111,101,100
list1+list2就是答案了。。。

序+
c********t
发帖数: 5706
39
来自主题: JobHunting版 - 贡献1个A家3面的面经,被老印坑了
为什么要开一个新的list来装list1? 扫2对应list1查询,最后难道不是O(m*n)吗?
interval tree好复杂,能40分钟写出来吗?
p****o
发帖数: 46
40
来自主题: 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;
... 阅读全帖
p*****2
发帖数: 21240
41
来自主题: JobHunting版 - 狗家面经
第五题
(defn f [list1, list2]
(= (sort list1) (sort list2)))
(f '(1 3 2 4) '(2 4 1 3))
i*********e
发帖数: 90
42
来自主题: JobHunting版 - 面试题讨论
题目是别的帖子里copy过来得,我也不大清楚。这个一一映射list2只见字母得排序完
全由list1决定得,本身毫无规律是么?那样的话需要所有字母得映射才行。难道我得
理解有误?
最初我以为是找list2得规律,比如list2得字母加减乘除某一个数字得到list1的字母y
=f(x)之类的。

b
m*****k
发帖数: 731
43
2,
cnt=0;
sort all time, see come time tx, keep count(tx)=++cnt
see leave time ty, keep count(ty)=--cnt
for any query time q, find the largest tz<=q, return count(tz)
4,
assume List1 has uniq elements,
create Map by scan list1
then sort on list2 with comparator comparing indice from previous map?
b**********y
发帖数: 504
44
来自主题: JobHunting版 - 问一个java的问题
List list1 = new ArrayList(list2);
List list1 = list2;
这两个有什么区别?
b********6
发帖数: 35437
45
保留或剔除重复结果太容易了
你要找的是在list1里出现但是不在list2里的,在list1, list2里各放一个指针ptr1,
ptr2,如果ptr1大于ptr2就增加ptr2
s****h
发帖数: 3979
46
这个“大的波”应该不是想出来的敏感词吧。
估计先有个想出来的基本敏感词list1,然后根据这个找出一些敏感词频率较高的文章
,文章里的其他词作为候补敏感词,手工过滤成list2.
然后list1 + list2 + 的地得扩展成敏感词list。
r*****l
发帖数: 2859
47
来自主题: Java版 - ArraList question
After doing list1.clone() the link between the newly added
element and list1 was broken.
So your 'if' does not hold. If you really understand my
reply, there should have no 'if' in your response.

if"
x***n
发帖数: 70
48
来自主题: Java版 - 问一个 java generic问题
Many thanks!
So the key is "compiler just looks at the declaration to determine the type"
, and the compiler needs to make sure the element to be added is of the type
surely safe to be added.
So I think that's the same reason why 3 and 4 in the following statements
can't compile:
1 List< ? extends Number> list1 = new ArrayList ();
2 List< ? > list2 = new ArrayList ();
3 list1.add(3.2);
4 list2.add(4.8);

IOException's parent class (the exact type is not known). It's ok to add
F... 阅读全帖
S**I
发帖数: 15689
49
来自主题: Programming版 - 怎么样连接(concatenate)两个list?
list1.splice(list1.end(),list2);
t***q
发帖数: 418
50
来自主题: Programming版 - python 问题,急,在线等。
python 问题,急,在线等。要用python写一个function,function 有两个arguments,
这两个arguments是两个lists.该怎么写?
def function(list1, list2) not right,
def function(*list1,*list2) not right,
how to do it?
或是python function只容许有一个list argument?
Thank you so much!
1 2 下页 末页 (共2页)