|
c****r 发帖数: 65 | 2 来自主题: WaterWorld版 - test2 test2 |
|
o********9 发帖数: 20 | 3 【 以下文字转载自 test 讨论区 】
发信人: onlytest09 (cc), 信区: test
标 题: web test2
发信站: BBS 未名空间站 (Mon Apr 20 04:45:56 2009)
test 2 |
|
p*****2 发帖数: 21240 | 4 object test2 extends App {
val v1=Vector(1,2,3)
val v2:Vector[Int]=null
val v3=Vector(4,5,6)
val vv:Vector[Vector[Int]]=Vector(v1,v2,v3)
val it=new MyIterator(vv)
for(i<-1 to 7)
{
println(it.hasNext)
println(it.next)
}
}
true
1
true
2
true
3
true
4
true
5
true
6
false
Exception in thread "main" java.lang.Exception: empty
at MyIterator.next(test2.scala:25)
at test2$$anonfun$1.apply$mcVI$sp(test2.scala:39)
at scala.collection.immu... 阅读全帖 |
|
B*****s 发帖数: 3463 | 5 汗啊,刚才居然算错了, 给个通用解, 这是几年级的功课啊, 太难了!
#!/usr/bin/perl
$total=$ARGV[0];
for ($i=1,$c=1; $total>$i*9*$c ; $i*=10,$c++) {
$total-=($i*9*$c);
}
die("no solution\n") if ($total % $c !=0);
die("Total #Pages: ", $total/$c+$i-1, "\n");
------------------------------------------------------------------
[root@localhost trash]$ ./test2.pl 9
Total #Pages: 9
[root@localhost trash]$ ./test2.pl 1
Total #Pages: 1
[root@localhost trash]$ ./test2.pl 0
Total #Pages: 0
[root@localhost trash]$ ./test2.pl 12
no soluti... 阅读全帖 |
|
L***s 发帖数: 1148 | 6
这个问题在别处有讨论过
http://www.newsmth.net/bbstcon.php?board=Python&gid=84864
发信人: pulo (普洛米·我们的民族从来不缺乏苦难), 信区: Python
标 题: Re: 关于空list做默认参数的一个疑问
发信站: 水木社区 (Thu Dec 29 04:32:28 2011), 转信
一个函数的默认参数是该函数(对象)的一个属性,存在一个叫func_defaults
的tuple里,而函数(类)本身在def时就实例化了,其func_defaults属性
有可能在多次函数调用过程中改变。
拿楼主的例子来说:
>>> def test1( x=[] ):
... print(type(x))
... x.append(0)
... return x
...
>>> test1.func_defaults
([],)
>>> test1()
[0]
>>> test1.func_defaults
([0],)
>>> test1()
[0... 阅读全帖 |
|
s******r 发帖数: 1524 | 7 not sure what you want.Try
data test1 test2(keep=idx);set test;
idx=_n_;
if **** then output test2;
else output test1;
run;
data test2;set test2;
idx=.;
run;
data testt;set test1 test2(in=in2);
drop idx;
run;
在 hehehehe (入了大圣教,心中充满喜乐) 的大作中提到: 】 |
|
m*****x 发帖数: 114 | 8 还有最后一个问题,
在读写文件时,出现问题:
Writing to test2.txt ...
Warning: file_put_contents(test2.txt) [function.file-put-contents]: failed
to open stream: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/
putcontents.php on line 4
Appending to test2.txt ...
Warning: file_put_contents(test2.txt) [function.file-put-contents]: failed
to open stream: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/
putcontents.php on line 6
也是permission的问题,我所有的.php和相关的东西都在/Applications/XAMPP/
xamppfiles/htdocs下... 阅读全帖 |
|
m*****x 发帖数: 114 | 9 还有最后一个问题,
在读写文件时,出现问题:
Writing to test2.txt ...
Warning: file_put_contents(test2.txt) [function.file-put-contents]: failed
to open stream: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/
putcontents.php on line 4
Appending to test2.txt ...
Warning: file_put_contents(test2.txt) [function.file-put-contents]: failed
to open stream: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/
putcontents.php on line 6
也是permission的问题,我所有的.php和相关的东西都在/Applications/XAMPP/
xamppfiles/htdocs下... 阅读全帖 |
|
A***l 发帖数: 461 | 10 有一幅基准的图像(Ref Image),跟两个待配准的图像(Test1,Test2)
图像都经过了二值化处理,眼睛感官上Test1更加接近Ref Image,而Test2有一些位移,
但是如果用Sum of the Square Difference去判断,Test2跟Ref的SSD反而更小一些
Variance也是Test2跟Ref更小一些。
请问有什么比较简便的方法判断出正确的图像么? |
|
A***l 发帖数: 461 | 11 【 以下文字转载自 ComputerGraphics 讨论区 】
发信人: Apell (A片), 信区: ComputerGraphics
标 题: 求教:判断两幅图像的差距除了SSD以外有别的好方法么?
发信站: BBS 未名空间站 (Mon Jul 18 03:09:41 2011, 美东)
有一幅基准的图像(Ref Image),跟两个待配准的图像(Test1,Test2)
图像都经过了二值化处理,眼睛感官上Test1更加接近Ref Image,而Test2有一些位移,
但是如果用Sum of the Square Difference去判断,Test2跟Ref的SSD反而更小一些
Variance也是Test2跟Ref更小一些。
请问有什么比较简便的方法判断出正确的图像么? |
|
y*****w 发帖数: 1350 | 12 > test1 <- seq(1.4, 2.0, 0.1)
> test2 <- c(1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0)
> test1 == test2
[1] TRUE TRUE FALSE TRUE FALSE TRUE TRUE
> test1 <= test2
[1] TRUE TRUE TRUE TRUE TRUE TRUE TRUE
> test1 >= test2
[1] TRUE TRUE FALSE TRUE FALSE TRUE TRUE
这个浮点真是没法预测。以后作ifelse statement的时候,是不是都要用上面帖子里提
到的all.equal function呢? |
|
B*******1 发帖数: 2454 | 13 似乎可以吧,刚测试了一下,没有发现不对啊。
测了这几个例子
72 cout << "-----------------Test 1--------------------" << endl;
73 int test1[] = {1, -2, 4, -2, 6, 7};
74 getSubArray(test1, sizeof(test1)/sizeof(int), 7);
75
76 cout << "-----------------Test 2--------------------" << endl;
77 int test2[] = {1,1,1,1,-1};
78 getSubArray(test2, sizeof(test2)/sizeof(int), 3);
79
80
81 cout << "-----------------Test 3--------------------" << endl;
82 int test3[] = {1,1,1,1,0,-1,0,-1,1};
83 getSubAr... 阅读全帖 |
|
r*c 发帖数: 167 | 14 #include
#include
#include
#include
#include
using namespace std;
class KModulo {
public:
int numSolutions(const string& s, const int m, const int rmd, vector<
string>& res) {
int len = s.size();
int localM = m, mLen = 0;
while(localM){
localM /= 10, ++mLen;
}
if (len < mLen) return 0;
vectorvIndices;
unordered_mapmp; //[index of s, index of vIndices]
... 阅读全帖 |
|
发帖数: 1 | 15 找购买物品相关的物品,返回最长相关List。如果有一样长的,返回字典最小的一个。
Test case1:
[test1, test2]
[test3, test4]
==> [test1, test2]
Test case2:
[test1, test2]
[test3, test4]
[test4, test5]
==> [test3, test4, test5]
请教有没有比较好简洁的解法? |
|
r****l 发帖数: 741 | 16 看这些例子O(N)可解
俩字典,test1:([test1,test2])
Test2:([test1,test2]),value是同一个list/linkedlist
每加一个Link,看能不能和原来的连起来。其实就是
没法连,连一个,连两个三种情况
while loop就好。连起来的话两个字典要同步更新
每一步还要更新最长List
如果同一个Node可能指向不同的node,就麻烦得多
遍历有向图? |
|
l******t 发帖数: 108 | 17 写了两个巨简单的php3文件
test1.php
test2.php
echo "test1 value : ".$test1;
?>
test1.php输入的东西怎么也传不到test2.php中的$test1变量中,$test1仍然是
空值。
win32下的Apache+php |
|
k*******p 发帖数: 8821 | 18 请教一个问题。包子奉上有用的解决办法。
我想根据条件 call其中一个函数。这段代码运行为什么没有任何结果?
$a=18;
if ($a>3)
{
?>
}
else
{
?>
}
?>
|
|
xt 发帖数: 17532 | 19 今天恶补awk,写了这么个小程序
#!/bin/awk -f
BEGIN {
}
{
print "initLen=", length(testvar), "\n"
testvar[length(testvar) + 1]=1
testvar[length(testvar) + 2]=2
for (i = 1; i <= length(testvar); ++i) {
print "testvar[", i, "]=", testvar[i], "\n"
}
}
结果:
awk: test2.awk: line 7: illegal reference to variable testvar
awk: test2.awk: line 8: illegal reference to variable testvar
awk: test2.awk: line 10: illegal reference to variable testvar
请问为什么出错? |
|
f*****w 发帖数: 2602 | 20 比如我有两个测试文件 test1.js 和 test2.js.
但是我只建了一个test database instance.
然后test1 和 test2 都做如下操作: 清空数据库,插入一些初始值,然后运行程序。
如果mocha很不幸地并行执行test1和test2 , 那不就race condition了么 同时在操
作同一个数据库,一团糟了。 |
|
xt 发帖数: 17532 | 21 【 以下文字转载自 Linux 讨论区 】
发信人: xt (拷贝猫), 信区: Linux
标 题: awk问题求救
发信站: BBS 未名空间站 (Sat Nov 17 18:13:38 2012, 美东)
今天恶补awk,写了这么个小程序
#!/bin/awk -f
BEGIN {
}
{
print "initLen=", length(testvar), "\n"
testvar[length(testvar) + 1]=1
testvar[length(testvar) + 2]=2
for (i = 1; i <= length(testvar); ++i) {
print "testvar[", i, "]=", testvar[i], "\n"
}
}
结果:
awk: test2.awk: line 7: illegal reference to variable testvar
awk: test2.awk: line 8: illegal reference to variable testvar
awk: te... 阅读全帖 |
|
l***y 发帖数: 25 | 22
Or I want to get the answer for a simple version of this: If I want to write
a schma named test2.xsd which includes all the elements defined in test1.xsd
and defined some more elements, but test2.xsd has changed the annotations of
the elements in test1.xsd, leaving the names and types unchanged. Now, can I
just simply import the namespace of test1.xsd in test2.xsd and only define the
extra elements? The changes on annotations will not make any difference in
using the schemas. Is that correct? |
|
s*****a 发帖数: 2735 | 23 PROC IML;
X={2 3,
4 5};
CREATE test2 FROM x[colname={'a' 'b'}];
APPEND FROM x;
Quit;
上边这个可以生成 test2;
PROC IML;
a=1;
b=2;
x={a b};
CREATE test2 FROM x[colname={'a' 'b'}];
APPEND FROM x;
Quit;
上面这个就不行了
只给出
a b
A B
请提示。 |
|
n****e 发帖数: 226 | 24 assuming your original data is TEST, and there are three scores.
data test2(drop=score1-score3);
set test;
by country;
if first.country then count=0;
count+1;
array scr {3} score1-score3;
do index=1 to 3;
score=scr{index};
output;
end;
run;
proc sort data=test2; by country index; run;
proc transpose data=test2 out=test3 prefix=rater;
var score;
by country index;
id count;
run; |
|
d*******y 发帖数: 349 | 25 这是我做的test。
test1
1|2|3
2|3|4
3|2|5
test2
1|a|f
2|b|g
join test1 and test2 using regular left outer join.
join -t"|" -a1 test1 test2 > test3
now, process test3
awk -F"|" 'BEGIN{for(i=1;i<=2;i++) testvar=testvar"|0"}NF<5 {print $0testvar;
next}{print $0}' test3 > test4
注意事项:
1.我的例子用的是pipe做为delimiter,习惯.
2.希望for loop要多长看你的两个文件column 差多少。
试试吧。不过几万列,不知道你的awk版本给不给力。如果不行试试gawk。 |
|
e******c 发帖数: 4 | 26 帮朋友卖。原装美国著名加强班正版。请站内短信询价。先到先得。 朋友可带书在曼
哈顿见面。包括以下习题书。
Gifted And Talented Assessment K and 1st Grade
NNAT 2 Level A Practice Test1 K
NNAT 2 Level A Practice Test2 K
OLSAT Practice Test Level A Test1 K and 1st Grade
OLSAT Practice Test Level A Test2 K and 1st Grade
NNAT 2 Preparation
OLSAT Preparation Guide II Instruction
OLSAT Preparation Guide II (Level A)
Workbook for the NNAT2 – Levels A and B
Serial Reasoning Workbook for the NNAT2 – Levels A and B
Spatial Visualization Workbook for the NNAT2... 阅读全帖 |
|
p******s 发帖数: 107 | 27 【 以下文字转载自 NewYork 讨论区 】
发信人: partybos (partybos), 信区: NewYork
标 题: 【供求】纽约天才班K和1st Grade入学考试全套复习题
发信站: BBS 未名空间站 (Mon May 5 17:10:38 2014, 美东)
朋友买的全套正版,他孩子用完了。有要的朋友站内信。
全套包括下面的书 -
Gifted And Talented Assessment K and 1st Grade
NNAT 2 Level A Practice Test1 K
NNAT 2 Level A Practice Test2 K
OLSAT Practice Test Level A Test1 K and 1st Grade
OLSAT Practice Test Level A Test2 K and 1st Grade
NNAT 2 Preparation
OLSAT Preparation Guide II Instruction
OLSAT Preparation Guide II (Level A)
Workbook for ... 阅读全帖 |
|
n*******s 发帖数: 482 | 28 code :
class Base{
public:
Base(){cout << "Base()" << endl;}
Base(const Base&){cout << "Base(const Base&)" << endl;}
~Base(){cout << "~Base()" << endl;}
};
Base func(Base b){return b;}
void test1(){
Base a;
func(a);
}
void test2(){
Base a;
Base b = func(a);
}
int main(){
test1();
cout<<"----------"<
test2();
return 0;
}
// from the output,
test1() will
1. first call Base's default constructor for "Base a"
2. call Base's copy constructor since parameter is passed by value
3. call Base |
|
p*****2 发帖数: 21240 | 29
import java.io.*;
import java.util.*;
public class test2
{
public static void main(String[] args) throws Exception
{
new test2().run();
}
PrintWriter out = null;
void run() throws Exception
{
Scanner in = new Scanner(System.in);
out = new PrintWriter(System.out);
Node node1 = new Node(1);
Node node4 = new Node(4);
Node node3 = new Node(3);
node3.left = node1;
node3.right = node4;
Node node6 = new Nod... 阅读全帖 |
|
p*****2 发帖数: 21240 | 30 刚做了一个小题。不知道第二种写法面试会不会悲剧?
object test2 extends App {
val n=readLine.toInt
val a=readLine.split(" ").map(_.toInt)
var max=0
for(i<-0 until n)
{
var value=a(i)
max=math.max(max,a(i))
for(j<-i+1 until n)
{
value^=a(j)
max=math.max(max,value)
}
}
println(max)
}
object test2 extends App {
val n=readLine.toInt
val a=readLine.split(" ").map(_.toInt)
println((for(i<-0 until n) yield for(j<-i+1 to n... 阅读全帖 |
|
a******e 发帖数: 124 | 31 以前写程序test时候只是在main函数里简单输出一下看看对不对,最近想学一下unit
test,这个有什么格式要求吗(我看有些人用assert())?比如用c++语言想写一个
binary search的unit test该如何写,谢谢!
试着写了一个,不知道这样算不算unit test
#include
using namespace std;
int BinarySearch(int arr[], int size, int target){
int high=size-1;
int low=0;
int mid;
while(low<=high){
mid=low+(high-low)/2;
if(arr[mid]==target){
return mid;
}
else if(arr[mid]>target){
high=mid-1;
}
else{
low... 阅读全帖 |
|
p******s 发帖数: 107 | 32 【 以下文字转载自 NewYork 讨论区 】
发信人: partybos (partybos), 信区: NewYork
标 题: 【供求】纽约天才班K和1st Grade入学考试全套复习题
发信站: BBS 未名空间站 (Mon May 5 17:10:38 2014, 美东)
朋友买的全套正版,他孩子用完了。有要的朋友站内信。
全套包括下面的书 -
Gifted And Talented Assessment K and 1st Grade
NNAT 2 Level A Practice Test1 K
NNAT 2 Level A Practice Test2 K
OLSAT Practice Test Level A Test1 K and 1st Grade
OLSAT Practice Test Level A Test2 K and 1st Grade
NNAT 2 Preparation
OLSAT Preparation Guide II Instruction
OLSAT Preparation Guide II (Level A)
Workbook for ... 阅读全帖 |
|
e******c 发帖数: 4 | 33 【 以下文字转载自 NewYork 讨论区 】
发信人: elitenyc (elitenyc), 信区: NewYork
标 题: 【纽约天才班】学前班和一年级考试复习题
发信站: BBS 未名空间站 (Thu Dec 11 20:13:56 2014, 美东)
帮朋友卖。原装美国著名加强班正版。请站内短信询价。先到先得。 朋友可带书在曼
哈顿见面。包括以下习题书。
Gifted And Talented Assessment K and 1st Grade
NNAT 2 Level A Practice Test1 K
NNAT 2 Level A Practice Test2 K
OLSAT Practice Test Level A Test1 K and 1st Grade
OLSAT Practice Test Level A Test2 K and 1st Grade
NNAT 2 Preparation
OLSAT Preparation Guide II Instruction
OLSAT Preparation Guide II (Level A)
Workboo... 阅读全帖 |
|
p******s 发帖数: 107 | 34 朋友买的全套正版,他孩子用完了。有要的朋友站内信。
全套包括下面的书 -
Gifted And Talented Assessment K and 1st Grade
NNAT 2 Level A Practice Test1 K
NNAT 2 Level A Practice Test2 K
OLSAT Practice Test Level A Test1 K and 1st Grade
OLSAT Practice Test Level A Test2 K and 1st Grade
NNAT 2 Preparation
OLSAT Preparation Guide II Instruction
OLSAT Preparation Guide II (Level A)
Workbook for the NNAT2 – Levels A and B
Serial Reasoning Workbook for the NNAT2 – Levels A and B
Spatial Visualization Workbook for the NNAT2 – Levels A and ... 阅读全帖 |
|
e******c 发帖数: 4 | 35 帮朋友卖。原装美国著名加强班正版。请站内短信询价。先到先得。 朋友可带书在曼
哈顿见面。包括以下习题书。
Gifted And Talented Assessment K and 1st Grade
NNAT 2 Level A Practice Test1 K
NNAT 2 Level A Practice Test2 K
OLSAT Practice Test Level A Test1 K and 1st Grade
OLSAT Practice Test Level A Test2 K and 1st Grade
NNAT 2 Preparation
OLSAT Preparation Guide II Instruction
OLSAT Preparation Guide II (Level A)
Workbook for the NNAT2 – Levels A and B
Serial Reasoning Workbook for the NNAT2 – Levels A and B
Spatial Visualization Workbook for the NNAT2... 阅读全帖 |
|
Z****e 发帖数: 2999 | 36 This is what I tried:
first, need setuid on screen:
sudo chmod +s /usr/bin/screen
sudo chmod 755 /var/run/screen
on test1 account, this is the .screenrc:
multiuser on
addacl test2
then with test2 account, do:
$ screen -S test1/[PID] -r |
|
b***d 发帖数: 186 | 37 bash-2.05# mount -F lofs /ttt/test2/ /t2
bash-2.05# df -k
...
/ttt/test2/ 492422 68628 374552 16% /t2 |
|
s***e 发帖数: 122 | 38 看来是因为这一句:
fread(&sacbin, sizeof(header), 1, fpr);
要改成
fread(&sacbin, sizeof(struct header), 1, fpr);
如果你是用C编译器的话。
当然你也可以定义struct header为typedef struct header {...} HEADER; 那样你就可以用sizeof(HEADER)了。
下面这段代码是可以编译运行的。
#include
struct header {
int hd;
};
struct sac
{
struct header hdr;
float * data;
};
void test2() {
const char * const fn = "test2.txt";
FILE* fpw = fopen(fn, "w");
struct header hdr;
hdr.hd = 18;
fwrite(&hdr, sizeof(hdr), 1, fpw);
fclose(fpw |
|
b*********7 发帖数: 12 | 39 不好意思,回帖晚了。
不过好像现在的错误又变了,刚才可能我没加上lib包含路径,现在加上以后出错信息
如下:
bash-2.05b$ gcc -I/home/me/GSL/include -I/home/me/GMRF/local/include -L/home
/me/GMRF/local/lib -L/home/me/GSL/lib -o test2 test2.c
Undefined first referenced
symbol in file
GMRFLib_free_graph /var/tmp//cclSOuVa.o
GMRFLib_read_graph /var/tmp//cclSOuVa.o
GMRFLib_print_graph /var/tmp//cclSOuVa.o
GMRFLib_compute_subgraph /var/tmp//cclS |
|
s******5 发帖数: 141 | 40 int main(){
cout<
cout<
}
char* test1(){
char* tt = "test";
return tt;
}
char* test2(){
char tt[] = "TEST";
return tt;
}
为什么test1会正确的返回tt呢?它指向的不应该是local变量么?
多谢。 |
|
c******o 发帖数: 1277 | 41 Warning: boring stuff next.太长了,不知道有人看没有。
monad不是一个数据结构,它是一个“类型“的一个“类型”的一个“类型”。(
higher order type)
举例
type:
String
first order type:
List[X], can be List[String], List[Int], List[Double]
higher order type :
Monad, Can be List[X], Try[X], Option[X]
严格来说,Monad是一个高阶的类型,一个“类型“的一个“类型”的一个“类型”
他的定义就是一个类型F,如果能在之上定义
def unit[A](a: => A): F[A]
def flatMap[A,B](ma: F[A])(f: A => F[B]): F[B]
这个类型就是一个monad.
比如List
def unit[A](a: => A): List[A]
给一个x,我能用unit做一个一个元素的List: (x)
scala> List("a")
res0: List[String]... 阅读全帖 |
|
m********5 发帖数: 17667 | 42 why you use iss.eof()?
The common way to do this is directly check after iss>>temp, because their
can be fail, bad, whitespace, or eof. If either fail/bad signal is True, the
temp is not valid.
###
void test(){
string s = "A B C "; // output is A B C C
// If string s = "A B C", then the output would be A B C
istringstream iss(s);
string temp;
int _i = 0;
while (!iss.eof())
{
cout << _i << " iss stat[good,bad,fail,eof]: [" << iss.good() << iss
.bad() <阅读全帖 |
|
发帖数: 1 | 43 01 class Test1:
02 def __init__(self, x):
03 self.x=x
04 @property
05 def x(self):
06 return self.__x
07 @x.setter
08 def x(self, x):
09 self.__x=x
10 t=Test1(10)
11 t.__x=20
12 print(t.x)
13 print(t.__x)
14
15 class Test2:
16 def __init__(self, x):
17 self.__x=x
18 @property
19 def x(self):
20 return self.__x
21 @x.setter
22 def x(self, x):
23 self.__x=x
24 t=Test2(10)
25 t.__x=20
26... 阅读全帖 |
|
S******y 发帖数: 1123 | 44 data test;
input ID male female;
cards;
1 1 0
2 0 1
3 1 0
4 1 0
5 0 1
6 1 0
;
run;
data test2;
set test;
if male=1 then malex='male';
if female=1 them femalex='female';
run;
proc sql;
create table test3 as
select ID, coalesce(malex, femalex) as gender
from test2;
;
quit; |
|
s******r 发帖数: 1524 | 45 data test1;
input x;
datalines;
1
2
3
;
run;
data test2;
input y $1.;
datalines;
a
b
c
;
run;
proc sql;select x, y from test1 cross join test2;run;quit; |
|