a*****g 发帖数: 19398 | 1 /* http://www.ccodechamp.com/c-program-of-set-operations-in-maths/ */
#include
#include
#define MAX 30
void create(int set[]);
void print(int set[]);
void Union(int set1[],int set2[],int set3[]);
void intersection(int set1[],int set2[],int set4[]);
int member(int set[],int x);
int main()
{ int set1[MAX],set2[MAX],set3[MAX];
int x,op;
set1[0]=set2[0]=set3[0]=0;
printf("-------------------------------------------------------------\n");
printf("----------------made by C co... 阅读全帖 |
|
s****a 发帖数: 238 | 2 l_set就是三个整数,我把<的定义也贴上来了,应该很简单
struct l_set {int l1;int l2;int l3;};
inline bool operator < (const l_set set1, const l_set set2))
{
if (set1.l1
return true;
else if (set1.l1==set2.l1 && set1.l2
return true;
else if (set1.l2==set2.l2 && set1.l3
return true;
else
return false; //when set1==set2 return false, as required by |
|
c*****a 发帖数: 808 | 3 char[256] set + 2个指针
检查isAnagram用constant time 256,就是O(1)
总共就是O(n) time, O(1) space, 256space是constant...
public boolean isAnagram(char[]s1,char[]s2){
int i=0;
for(char c:s1)
if(c!=s2[i++]) return false;
return true;
}
public boolean checkAna(String s1,String s2){
if(s1==null || s2==null)return false;
if(s2.length()==0) return true;
if(s1.length()
char[] set1 = new char[256];
char[] set2 = new char[256];
for(int i=0;i阅读全帖 |
|
f********i 发帖数: 563 | 4 现有一个问题,算是集合领域的一个应用:
Set1 = { u | u = a0*x0 + a1*x1 + a2*x2 + a3*x3 }
Set2 = { v | v = b0*y0 + b1*y1 + b2*y2 + b3*y3 }
其中 ai 和 bi是常系数,已知。 而 x 和 y 是未知数(整数),但范围已知。想知道
Set2是否是Set1的子集。
注: 未知数x的个数可以是arbitary的,但是x和y的个数必须一致,如上面的4个。也
可以是2个,如下面的例子,但在解题的时候,其个数以及各自的系数,都是已知的。
举个例子:
Set1 = { u | u = 8*x0 + 1*x1 } 其中: 0 <= x0 <= 3, 0 <= x1 <= 3
Set2 = { v | v = 1*y0 + 8*y1} 其中: 0 <= y0 <= 2, 0<= y1 <= 1
经计算: Set1 = { 0, 1, 2, 3, 8, 9, 10, 11, 16, 17, 18, 19, 24, 25, 26, 27 }
而 Set2 = { 0, 1, 2, 8, 9, 10 }
故而 S |
|
C******t 发帖数: 72 | 5 很简单,用table number, rownumber来排序.
data set1;
input x y;
datalines;
1 2
3 4
5 6
;
data set2;
input w z;
datalines;
3 4
;
run;
data set1;
set set1;
setn=1;
rown=_n_;
run;
data set2;
set set2;
setn=2;
rown=_n_;
run;
proc sql;
create table combined (drop=setn rown)
as
select *
from set1
UNION all
select *
from set2
order by setn, rown; |
|
e****e 发帖数: 418 | 6 Directed graph from children to parents.
From persion1, persion2 build set1, set2 by BFS. Also add persion1 in set1,
person2 in set2.
On each step of BFS, compare if there is a common node in set1 and set2.(can
be optimized by only comparing newly added nodes with the other sets to
avoid comparing the same nodes repeatedly.) |
|
e****e 发帖数: 418 | 7 Directed graph from children to parents.
From persion1, persion2 build set1, set2 by BFS. Also add persion1 in set1,
person2 in set2.
On each step of BFS, compare if there is a common node in set1 and set2.(can
be optimized by only comparing newly added nodes with the other sets to
avoid comparing the same nodes repeatedly.) |
|
k***s 发帖数: 277 | 8 也算是c++老手了,今天遇到一个和奇怪的问题,具体
见以下程序。关键是set(),set2()的结果不同,也就是
set : ((c_base*)this)->operator[](i) = p;
set2: ((c_base)*this).operator[](i) = p;
的区别在那里?(set2无法改变数组元素)
我用的是linux, gcc 3.4.6,结果是:
0 : 1
1 : 2
2 : 3
0 : 1
1 : 2
2 : 3
0 : 1
1 : 0
2 : 3 |
|
b***y 发帖数: 2799 | 9 ☆─────────────────────────────────────☆
foolboylei (老高卖菜) 于 (Thu Jun 19 13:18:01 2008) 提到:
现有一个问题,算是集合领域的一个应用:
Set1 = { u | u = a0*x0 + a1*x1 + a2*x2 + a3*x3 }
Set2 = { v | v = b0*y0 + b1*y1 + b2*y2 + b3*y3 }
其中 ai 和 bi是常系数,已知。 而 x 和 y 是未知数(整数),但范围已知。想知道
Set2是否是Set1的子集。
注: 未知数x的个数可以是arbitary的,但是x和y的个数必须一致,如上面的4个。也
可以是2个,如下面的例子,但在解题的时候,其个数以及各自的系数,都是已知的。
举个例子:
Set1 = { u | u = 8*x0 + 1*x1 } 其中: 0 <= x0 <= 3, 0 <= x1 <= 3
Set2 = { v | v = 1*y0 + 8*y1} 其中: 0 <= y0 <= 2, 0<= y1 <= |
|
l******e 发帖数: 12192 | 10 第二个else if,如果set1.l1>set2.l1, set1.l2=set2.l2, set1.l3 |
|
s****a 发帖数: 238 | 11 你是对的,太谢谢了,第二个else if 应该是
else if (set1.l1==set2.l1 && set1.l2==set2.l2 && set1.l3
然后就对了,是我思路不清楚,浪费了整整一天... |
|
b******g 发帖数: 1721 | 12 来自主题: JobHunting版 - 请教一道题 collect letters to set1 from word1
collect letters to set2 from word2
if set1==set2, then anagram ; otherwise not. |
|
s******i 发帖数: 236 | 13 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... 阅读全帖 |
|
P**********k 发帖数: 1629 | 14 不太明白,能否展开说说
我感觉大概的意思是类似quick sort.
先从red jug里面选择一个r1,然后用这个r1作为pivot把blue jugs分成两部分,一部
分set1包含所有比r1小的jug,另一部分set2包含所有比r1大的jug
然后从red jug里面再选择一个r2,这次先和之前的r1比较,这样就可以确定,只需要
在set1或者set2中搜索,
可是我的问题是,如果要是代码实现的话,是不是需要一个类似于binary tree的结构
来存储之前的pivot list,这样每次可以对于新的red jug,先在这个pivot list里面
搜索,来确定要partition的interval。。。
有做过这个的xdjm能来讨论一下么 |
|
W*N 发帖数: 1354 | 15 Yes, I agree. However, as you explained, for the voiced statement to be
considered truth, it must have the necessary condition that "as long as
somebody thinks it is truthful".
In order to disprove the existence of untruth, one must prove that Set1 "
lying, i.e., voiced statement conflicts with the same subject's opinion" is
necessarily the same set as Set2 "lying, i.e., voiced statement conflicts
with the same subject's opinion, however, the voiced statement is believed
by someone else."
It wou... 阅读全帖 |
|
s*****d 发帖数: 43 | 16 Is your example typical?
In you example,
8x0 + 1x1 and 1y0 + 8y1 are the same equation, just write it this way:
set1 = {1x1 + 8x0}
set2 = {1y0 + 8y1}
Since set of x1 includes set of y0, and set of x0 includes set of y1,
set1 must include set2. |
|
s*********e 发帖数: 1051 | 17 data set1 set2;
set yourdata;
if mod(id, 2) = 0 then output set1;
else output set2;
run; |
|
C******t 发帖数: 72 | 18 data set2 (keep=product month sales);
set set1;
product= product;
array salearray month1-month12;
do i=1 to 12;
month=i;
sales=salearray{i};
output;
end;
run;
Get Backward:
data set3(drop=sales month i);
retain product;
array salearray month1-month12;
do i=1 to 12;
set set2 ;
product=product;
salearray{i}=sales;
end;
output;
run; |
|
|
s*********d 发帖数: 752 | 20 如果家里空间够大,可以买2个set。我买了1个set2个extension。
以下是我在网上看到别人总结的,mm可以参考。
This play yard is awesome. I purchased two of them and put them together (as
was recommended by others). For sure, one play yard would probably be too
small.
Here is the square footage you get with the extensions (got this info off of
another website):
play zone with 0 extensions=13 sq ft
play zone with 1 extension=18 sq ft
play zone with 2 extensions=29 sq ft
play zone with 3 extensions=37 sq ft
play zone with 4 extensions (or 2 play... 阅读全帖 |
|
|
c******t 发帖数: 1733 | 22 存个备份
可以只练四项,bench, military, squat, deadlift。 每个星期练四天,每天集中练
一项,每一个周期四周。
第1周 3x5
第2周 3x3
第3周 3x(5, 3, 1)
第4周 deloading
然后第2轮,这时力量会有增长,用更大的重量。
具体先测自己的one-rep max, 然后以90% 1rm为基数算,利用以下program
第1周 第2周 第3周 第4周
set1 65%x5 70%x3 75%x5 40%x5
set2 75%X5 80%x3 85%x3 50%x5
set3 85%X5+ 90%x3+ 95%x1+ 60%x5
5+, 3+, 1+的意思是你利用那个重量做最高reps,但不要力竭 |
|
c******t 发帖数: 1733 | 23 存个备份
可以只练四项,bench, military, squat, deadlift。 每个星期练四天,每天集中练
一项,每一个周期四周。
第1周 3x5
第2周 3x3
第3周 3x(5, 3, 1)
第4周 deloading
然后第2轮,这时力量会有增长,用更大的重量。
具体先测自己的one-rep max, 然后以90% 1rm为基数算,利用以下program
第1周 第2周 第3周 第4周
set1 65%x5 70%x3 75%x5 40%x5
set2 75%X5 80%x3 85%x3 50%x5
set3 85%X5+ 90%x3+ 95%x1+ 60%x5
5+, 3+, 1+的意思是你利用那个重量做最高reps,但不要力竭 |
|
c******t 发帖数: 1733 | 24 Volume training,
如果利用大组数的运动刺激特定肌群, 肌肉会通过增长来适应这种大量的stress, 这
就是volume training 的原理。这种方法是举重运动员在off season用来快速增长
lean mass 常用的方法,因为在德语区比较流行,所以叫German volume training。
GVT后来由 coach Poliquin引进到美国,最基础的方法就是所谓的10X10。
10X10有其局限性,特别对advance level的人局限性更大。因为advance level的CNS
adaptation 已经足够强大10X的intensity 就低了一些。所以poliquin后来对gvt做了
一些改正,以适应advance level的人。另外还有volume ladder 的方法,和俄国的
bear routine都是异曲同工。
Advanced GVT:
最多5reps,每个routine 5,4,3 5,4, 3 循环。每次运动比上次加 6-9%的量,这样
少reps的组就能做大的重量。首先用10rm的重量,或1rm的75%,... 阅读全帖 |
|
c******t 发帖数: 1733 | 25 可以只练四项,bench, military, squat, deadlift。 每个星期练四天,每天集中练
一项,每一个周期四周。
第1周 3x5
第2周 3x3
第3周 3x(5, 3, 1)
第4周 deloading
然后第2轮,这时力量会有增长,用更大的重量。
具体先测自己的one-rep max, 然后以90% 1rm为基数算,利用以下program
第1周 第2周 第3周 第4周
set1 65%x5 70%x3 75%x5 40%x5
set2 75%X5 80%x3 85%x3 50%x5
set3 85%X5+ 90%x3+ 95%x1+ 60%x5
5+, 3+, 1+的意思是你利用那个重量做最高reps,但不要力竭 |
|
c******t 发帖数: 1733 | 26 如果利用大组数的运动刺激特定肌群, 肌肉会通过增长来适应这种大量的stress, 这
就是volume training 的原理。这种方法是举重运动员在off season用来快速增长
lean mass 常用的方法,因为在德语区比较流行,所以叫German volume training。
GVT后来由 coach Poliquin引进到美国,最基础的方法就是所谓的10X10。
10X10有其局限性,特别对advanced level的人局限性更大。因为advanced level的CNS
adaptation 已经足够强大10X的intensity 就低了一些。所以poliquin后来对gvt做了
一些改正,以适应advanced level的人。另外还有volume ladder 的方法,和俄国的
bear routine都是异曲同工。
Advanced GVT:
最多5reps,每个routine 5,4,3 5,4, 3 循环。每次运动比上次加 6-9%的量,这样
少reps的组就能做大的重量。首先用10rm的重量,或1rm的75%,比如你squat 1rm... 阅读全帖 |
|
j***u 发帖数: 836 | 27 Set2
A: 莊,jimwuSr
B: Jim Wu
C: Jim Sr Wu
D: jimwu
起手時對子數:
A 0
B 1
C 0
D 1
打完1排的牌:
A 3 (極爛的莊家牌,中盤過後大小牌都不能聽,跟打吧,拆牌吧)
B 5 (小牌壓根沒希望,憋對子,不打錯能有5對。778條這種,8條果然上了對)
C 4 (混1色的好牌)
D 5 (大小牌都还可以;小牌聽了卡8條)
最後:
A 7 (這麼爛的牌,打到黃,幾乎1張不錯才能摸7對,錯白要回頭;小牌更沒戲)
B 9 (打錯包含中在內的3張都能自摸7對)
C 8 (7對可行;門清混1色更好些,可以自摸)
D 7 (7對可行但太難;全留萬聽了門清清1色369萬)
成串上牌的現象还是存在。比如:
A的條先來一堆,後面的大致是餅,再萬,再餅;
B的2萬中1萬發1萬;
C还好,基本不連;
D的成串的萬和餅。 |
|
|
|
|
|
|
|
|
H******n 发帖数: 4072 | 35 找不着上次我自己做的表了。你自己用Excel做个表就可以了,就是用Lookup table两边拉一拉就好,10个人单循环也就45场,一两页纸。Header大概格式是:
Player1 Player2 Score Set1 Set2 Set3 Set4 Set5
你也可以再加上一些有用的header和对应的column。
10人单循环的排序是把10人列两行,然后固定一号种子不动,每轮之后其他人转一个位置。如果奇数个人参赛(如9人或11人),多加上一个虚拟选手叫“轮空”凑成双数,谁碰上他谁那一轮就轮空。 |
|
|
t***s 发帖数: 1877 | 37 no3. set2 神奇救球擦网,导致小德失误出盘点
no2. 网前volley大战,小德使出屁股向后,平沙落雁式。
no1. 胯下球打出三赛点 |
|
s*********4 发帖数: 3362 | 38
印象中我要是单打三个set2小时多一点
双打的话,两小时可以打到第四个set中间 |
|
|
D****o 发帖数: 12808 | 40 娜姐就被破了
看不清比分以为第一个set2:0落后
想想不对,都快1个小时了。。。
娜姐加油! |
|
|
a**s 发帖数: 9606 | 42 对了, 点击统计数据比较有意思:
你和cc的set1 点击了533次, set2只有380. 咋差别怎么大?
你和ken对tennisfriend/forrest2000的点击了46次. 私奔不严重吗 |
|
b*******s 发帖数: 1175 | 43 周六打了4个小时球,很爽。前面三个set和一4.5高手打,他是那种四两拨千斤打法,
引拍小,打上升期,网前和高压又很好,我基本没啥破解法,好多球,我回得很凶但是
角度不过,他借力球一下子回来了,让我措手不及。三个set2:6,3:6最后一个0:6.
不过基本绝大部分games都是deuce好多回,可惜我每次decue都输了,特别是他发球局
我有好多个破发点都没抓住。最近和老狐狸啊阿卡打好像也是我逢deuce必输。不知是
不是和我这种正手暴力反手不稳定打法有关?
被高手单打暴打后双打对他也是脆败。。。高手们支支招?
不过最后bso一下,四个单打两个双打后,第五个单打趁白狮子最近状态不佳,6:4难
得赢了他一次。。。。。 |
|
|
a***a 发帖数: 40617 | 45 都是命悬一线救回来的
相当刺激
set2和set3 |
|
l********e 发帖数: 573 | 46 应rllmm的要求 再发几个自己的小手工
卖差不多了 我所有帖子里的东西开始接受交换
当然要双方达成共识 看看你有什么样的首饰
而且 我的首饰价钱都很白菜:)
喜欢仿旧感觉 或者戴旧但是感觉很好的都可以
re在这里或者发邮箱:c*****[email protected]
^______^
set1 做工考究的三件套 加了很多提亮的小纯银珠 很精致 所有材料 :纯银(925银)
水晶珠子 $18
set2 一样的做工 所有材料 :纯银(925银) 水晶珠子 6mm淡水圆珍珠 $12
b12 swa曲饼 链子短 大概7" 好处是饼饼一直在手背那边 不乱转 饼饼背后有点小白点
不明显 追求完美的mm请绕行 $6
sn5 swa的红宝石叶子 大概2.2cm 完美无划痕或掉瓷 7$
sp1 swa的天使泪 加纯银水钻扣 大概2.5cm吧 $4
ne1 金棱珠耳环 合金wire 天然红宝石珠子 6mm珍珠 水晶棱珠 $4
) |
|
f*********g 发帖数: 3319 | 47 set1:
grey cardigan(牌子被我剪掉了), size s,100%cotton,88成新,喜欢他的前襟小花设计。
随意中带有精致。$10
灰色banana republic brand new with tag 7分裤,size 4 $10
白色anntaylor loft 全新无标全棉tee, size sp, $7
全新nordstrom crystal collection earring,$10gone
set2;
free people short sleep cardigan, size S100%linen, 很长的设计,绝对过pp,
like new condition,搭配legging穿非常青春休闲的。 $16
yellow ruffle express 100%silk sleeveless shirt, 88成新,非常适合做打底衫,色
彩柔和(我的相机有点偏冷色,实物更好看) $6
sell as set: $20 gone
set3:
brand new with tag anthropologie Moulineette soeurs gre... 阅读全帖 |
|
y*********e 发帖数: 7269 | 48 最牛的革命机了
亮点,比EM5改进的五轴防抖和AF
新的小范围AF,是革命机Contrast AF的一大突破,有望比Phase AF更小更精准。
Super Spot AF: Selectable from center of enlarge view(0.02% – 0.16% in
view image)
内置wifi功能结合smart phone,弥补了之前没有GPS,wireless shutter release的缺
陷,上传照片更方便。
唯一遗憾就是没有三防了。
http://www.43rumors.com/
Model name: E-P5
Product type: Micro Four Thirds interchangeable lens system camera
Memory : “SD Memory Card*1 (SDHC, SDXC, UHS-I compatible, Eye-Fi Card
compatible*2 )
*1: Class 6 or higher is recommended for Movie shooting.... 阅读全帖 |
|
g****t 发帖数: 31659 | 49 数据足够多,完全是可能的。
如果数据不够多,那么规则可能不是identifiable的。
因为 rules set1,rules set2可能产生相同的图像集。
那电脑就没办法分辨出来1,2两套规则。 |
|