由买买提看人间百态

topics

全部话题 - 话题: bounding
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
t********e
发帖数: 143
1

没错,我总是搞不清最后几数。差不多4个case:
1. search for a number.
2. search for insert index.
3. search for lower bound of a range.
4. search for upper bound of range.
f*******n
发帖数: 12623
2
来自主题: JobHunting版 - find index of an element in sorted array
Copying mistake
// left bound, inclusive
int binarySearch_left(char* arr, int len, char value) {
int low = 0, high = len-1, mid;
while (low <= high) {
mid = (low + high) / 2;
if (arr[mid] >= value)
high = mid - 1;
else
low = mid + 1;
}
return low;
}
// right bound, inclusive
int binarySearch_right(char* arr, int len, char value) {
int low = 0, high = len-1, mid;
while (low < high) {
mid = (low + high) / 2;
if... 阅读全帖
m****d
发帖数: 331
3
来自主题: JobHunting版 - amazon OR scientist面经
第二个人问的第二个问题,像是bin-packing 问题,如何证明结是接近最优解,大概应
该是找到一个lower bound, 然后你的启发式算法的解和这个lower bound 非常接近。
OR的面试其实挺麻烦的,面经基本没有用,也很难准备,因为问的问题会很广很广,从
线性规划到随机建模,从概率到统计,从SQL到C++, 基本上是面试的人想问什么就问
什么

貌.)
l****c
发帖数: 782
4
来自主题: JobHunting版 - 问一个F的题
a means is to find the log2(n) where n > 1. When n < 1, calculate log2(1/n);
1. find the most closed 2's multiples (small, large) to the n, upper value
and lower value are respectively times values to 2. //for example, if we
find values are 8 and 16, n is between 8 and 16, result is between 3~4.
2. we know log2(sprt(small*large)) = (log2(small)+log2(large))/2 = (upper
value + lower value)/2. // for example log2(13.31) = 3.5.
3.Check if n is larger or less then sprt(small*large). Then change the... 阅读全帖
l****c
发帖数: 782
5
来自主题: JobHunting版 - 问一个F的题
a means is to find the log2(n) where n > 1. When n < 1, calculate log2(1/n);
1. find the most closed 2's multiples (small, large) to the n, upper value
and lower value are respectively times values to 2. //for example, if we
find values are 8 and 16, n is between 8 and 16, result is between 3~4.
2. we know log2(sprt(small*large)) = (log2(small)+log2(large))/2 = (upper
value + lower value)/2. // for example log2(13.31) = 3.5.
3.Check if n is larger or less then sprt(small*large). Then change the... 阅读全帖
a*******y
发帖数: 1040
6
来自主题: JobHunting版 - 来贡献个facebook phone 题吧
definitely, but you first need to find the lower bound and upper bound for
the binary search
o****d
发帖数: 2835
7
来自主题: JobHunting版 - G家 onsite 面经
you are right.
找了一个溢出之外的解释
当low high不是指数组index的时候 有可能是负数
然后除2之后 会碰到潜在的问题
参考
http://community.topcoder.com/tc?module=Static&d1=tutorials&d2=
"You may also wonder as to why mid is calculated using mid = lo + (hi-lo)/2
instead of the usual mid = (lo+hi)/2. This is to avoid another potential
rounding bug: in the first case, we want the division to always round down,
towards the lower bound. But division truncates, so when lo+hi would be
negative, it would start rounding towards the higher bound."
b*****t
发帖数: 61
8
来自主题: JobHunting版 - 一点面试经验及请教Offer比较 A vs F

以工资来说,这是upper SDE2 offer,lower SDE3 offer
在 Amazon 加州,150K+70K差不多是SDE2的upper bound,SDE3的lower bound
SDE3 的 package可以很高的
SDE2 不是senior,SDE3才是,在亚马逊,SDE2/3 的responsibility 差挺远的
SDE3 = same level as manager = level 6
不要给recruiter忽悠了
BTW,我是 Amazon 加州的SDE3
r*********n
发帖数: 4553
9
来自主题: JobHunting版 - 周末出道题
a counting argument can show that the theoretical lower bound of any
comparison-based algorithm for this problem is O(NlogN).
suppose you have the sequence sorted, then you know what those k values are.
now we can count how many distinct sequences the algorithm has to resolve:
out of N numbers, we choose k to fill in those k positions centered at the
median:
(N choose k) * k!
however, among those sequences, k! sequences are correct (disregarding the
relative order, since we don't care). hence th... 阅读全帖
f****4
发帖数: 1359
10
typedef int (*sf)(int n);
sf fps = &myFunc.next;
fps(111);
error: ISO C++ forbids taking the address of a bound member function to form
a pointer to member function. Say ‘&Function_pointer::next’
error: cannot convert ‘int (Function_pointer::*)(int)’ to ‘int (*)(int)’
in initialization
typedef int (*sf)(int n);
sf fps = (sf)&myFunc.next;
fps(111);
error: ISO C++ forbids taking the address of a bound member function to form
a pointer to member function. Say ‘&Function_pointer::next’
warning: co... 阅读全帖
l*****c
发帖数: 52
11
来自主题: JobHunting版 - G家面经 已跪
前前后后面了四个月 电面面了两次 第一次onsite结束以后 Hiring Committee要求加
面一次两轮的onsite 周五HR电话打来说offer还是不能approve 决定move-on 接着面别
的家了
攒人品 求refer
Phone 1st
1. Hash table (collision, probability)
2. Generate fuzzy words (Not in dictionary, but look like the given
strings)
implement build() and nextWord();
e.g. ["APE", "APPLE", "ACE"] -> "ACE" (randomly)
Phone 2nd
1. Lowest common ancestor
2. Can't remember
Onsite 1st
1 White Female Mira
1.1 Find intersection from two lists
1.2 How many 0... 阅读全帖
j*t
发帖数: 184
12
来自主题: JobHunting版 - G家面经 已跪
>1.2 How many 0s tailing in N!
这题是数1...N中末尾数是5或0的个数吗?
>2.1 10 buttons passcode with 4 digitals. Generate a sequence to
> brute force it. Upper bound and lower bound of length, code to
> generate an optimal one.
>
>If we start from 0000 and use minimum digits if the number doesn't >appear
previously, we get 0000100020003000400050006000700080009 and >it will form a
cycle and stop generating new numbers.
backtracking? 如何证明soultion接近10k+3?
h**u
发帖数: 144
13
来自主题: JobHunting版 - 换工作太闹心了
创业公司快不行了,于是出来面试。感觉自己水平真的不行,或者说大家做题都做的太
牛了。
linkedin 第一轮phone interview是用多线程写一个 process和merge, thread pool
size固定。思想跟map reduce差不多。写的7788最后时间不够, 好在思路对,放我过了
。 第二轮phone interview悲剧。面试因为电话问题晚给我打了15分钟,所以只问了一
题(并有顺延15分钟)。很奇怪的是题目比较简单,就是transformed的sorted array的
查询,我写完code那个人说不错,而且还有时间,就问了问题聊了聊,感觉挺好的。一
周后告诉我悲剧。(回想我写的code有bug,但是面试官为啥不给我检查的时间而是说挺
不错的,直接让我问问题而不是检查code)
ebay 第一轮phone就悲剧了。面我的是中国人(女),口音很重。全程不给提示,就感
觉冷冷的看我被挂。题目就是n个数组找中位数。我的方法就是每个自己排序然后一个
一个丢出来,到中间了停下来。当时没有考虑基数偶数的情况,第二天就挂了。
amazon是去了seattle的总部o... 阅读全帖
h**u
发帖数: 144
14
来自主题: JobHunting版 - 换工作太闹心了
创业公司快不行了,于是出来面试。感觉自己水平真的不行,或者说大家做题都做的太
牛了。
linkedin 第一轮phone interview是用多线程写一个 process和merge, thread pool
size固定。思想跟map reduce差不多。写的7788最后时间不够, 好在思路对,放我过了
。 第二轮phone interview悲剧。面试因为电话问题晚给我打了15分钟,所以只问了一
题(并有顺延15分钟)。很奇怪的是题目比较简单,就是transformed的sorted array的
查询,我写完code那个人说不错,而且还有时间,就问了问题聊了聊,感觉挺好的。一
周后告诉我悲剧。(回想我写的code有bug,但是面试官为啥不给我检查的时间而是说挺
不错的,直接让我问问题而不是检查code)
ebay 第一轮phone就悲剧了。面我的是中国人(女),口音很重。全程不给提示,就感
觉冷冷的看我被挂。题目就是n个数组找中位数。我的方法就是每个自己排序然后一个
一个丢出来,到中间了停下来。当时没有考虑基数偶数的情况,第二天就挂了。
amazon是去了seattle的总部o... 阅读全帖
A*********c
发帖数: 430
15
来自主题: JobHunting版 - L面经
lower bound upper bound挺tricky的啊。
你做的怎么样?
A*********c
发帖数: 430
16
有意思,想想。胡说一下啊。
先做一次binary search,找到lower bound。看前面有几个元素,然后把生成数加几。
然后没完,更新binary search的lower bound继续search,重复,直到binary search
返回的结果是-1为止。如何?
binary search外面套一层。
z***m
发帖数: 1602
17
来自主题: JobHunting版 - machine learning如何學?
network information theory的那些capacity bound是啥还没弄明白呢, 最多就是些
upper bound,能不能achieve还另说呢。
y***k
发帖数: 162
18
来自主题: JobHunting版 - 长年潜水,回馈FLG面经
具体要求是给我一个initial的url,要从该url出发,把所有能到达的web page下载下
来,而且要保证每个page只被下载一次。然后assume每个机器的downlink带宽比uplink
带宽高很多。
High level的架构就是用一个hash function urlToMachine把各个url map到各台机器
上。从initial url开始,将其map到一台机器上。该台机器下载对应的page,并从下载
到的page里提取出新的url。最后把提取出的新url按照urlToMachine发给对应的机器。
如此循环扩散。
每台机器上的module及功能:
1. key-value store:用来保存该机器见过/下载过的url及其对应的page content。
2. communication module:负责接收从其他机器发送来的url,和将从本地的page
process module传来的url发送给其他机器(也可以传给自己,如果url对应的机器就是
自己的话)。对于每个从接收到的url,首先从key-value store里check是否第一次见
到。如Y... 阅读全帖
c*****n
发帖数: 95
19
这题可以O(n3)
遍历所有pair of rectangle, 对于每个pair 可以得到两个(因为可以旋转)相交区域的
lower bound (x' , y'). 这时res = 2
如果x' * y' >= limit
然后对剩下的rectangle 如果其长和宽都大于对应(x', y') 就res++
最后取最大的res
如果所有lower bound < limit, 返回-1
int getNum(int l1, int l2, int w1, int w2, vector& X, vector&
Y, int limit, int i, int j) {
int l = l1 < l2? l1:l2;
int w = w1 < w2? w1:w2;
if(l * w >= limit) {
int res = 2;
for(int k = 0; k < X.size(); k++) {
if(k != i &&... 阅读全帖
y**********a
发帖数: 824
20
来自主题: JobHunting版 - 问一道面试题

No. It's enumerating lower bound and upper bound of all cases of using 1
machine, any two machines, and all three machines.
l*******t
发帖数: 79
21
题目就是find all primes less or equal than n,要求体现OOD和写unit test。求拍
砖,多谢各位!
ps:不确定如果面试中让写C++ unit test,不用gtest, boost.test这些库,写成这样
可以吗?。。。因为之前自己写代码没有养成写unit test的习惯,感觉不太规范。。
#include
#include
#include
#include
#include
using namespace std;
class PrimeFinder {
friend class PrimeFinderTest;
public:
PrimeFinder(int n = 2) {
is_prime_.push_back(false);
is_prime_.push_back(false);
is_prime_.push_back(true);
primes_.... 阅读全帖
g******y
发帖数: 143
22
来自主题: JobHunting版 - 上一道G家题
Given a decision tree, and lower & upper bounds for each dimension of a d-
dimension space. Find the maximum volume of the d-dimension space and its
lower and upper bounds. 大家有没有优于O(n)的解法?
这题有点绕. 举个两维的例子:
initial range for d0 is (0,10), d1 is (0,10)
Decision tree
idx=1,split=4
/ \
/ \
null idx=0,split=2
d1
10 | |
| |
| |
4 |___|_______________
|
|
|___________________
0 2 10 ... 阅读全帖
H******u
发帖数: 332
23
来自主题: JobHunting版 - 回不去国的原因是装逼越来越难
能回去我也不回去,
中国的问题不在upper bound,而是lower bound太低,
方方面面的无底线,

样。
c********t
发帖数: 5706
24
来自主题: JobHunting版 - 说说4sum的复杂度吧
看看这个帖子,他的证明好像没问题啊。O(n^3)是下届
https://discuss.leetcode.com/topic/27445/lower-bound-n-3/14
我现在突然之间全糊涂了。Big O是upper bound of all cases啊,我一直以为是
average case呢。
那么我们为什么说quick sort是 O(nlogn)? 如果是worst case不是O(n^2)吗?是因为
优化partition可以避免吗?
i*n
发帖数: 19
25
前一阵子想找个通过internet拨打800电话的软件,没想到还真找着一个好东东,不敢独
享,特奉献给咱们广大的穷学生们。
特别适合以下用户:
1、只有手机没有座机,但经常要打8**电话
2、每天坐在电脑前超过8小时,懒得挪窝去用电话
3、所有需要打美国国内长途的朋友们
硬件设施:
1、PC、MAC或PDA
2、上下传速率超过100Kbps的宽带
3、头戴式耳麦或音箱麦克风一套
软件:
X-Lite(免费)
公司主页-- http://www.xten.com/
下载链接
X-Lite v2.0 Build 1103a for Windows (free)
http://builds.xten.net/download-public.php?download=883
X-Lite v2.0 Build 1103a for MAC OS X (free)
http://builds.xten.net/download-public.php?download=893
X-PRO for PocketPC ($50)
http://www.regnow.com/softsell/nph-so... 阅读全帖
a**i
发帖数: 608
26
来自主题: Living版 - Never buy a house in flood zone
今年NJ的雨水实在太多了;
好多河边的公园,树林都淹了。
一个月前去 Fairfield, Little Falls 一带,
80号公路旁好多房子泡在水里
N.J. weekend nor'easter leaves flood waters at near historic highs
Published: Sunday, March 14, 2010, 11:39 PM Updated: Monday, March 15,
2010, 5:21 AM
By Amy Ellis Nutt/The Star-Ledger The Star-Ledger
Just weeks after breaking a 130-year-old record for snowfall, the Garden
State buckled under the mid-March nor’easter. Two Teaneck men were killed
Saturday when a tree fell on them. Continued power outages, train del... 阅读全帖
L*****e
发帖数: 2926
27
来自主题: Living版 - 利率
yes. there is a meeting and news conference at 2PM.
"Short-term will be still low. "
I guess short-term means 15-year fix?
http://blogs.wsj.com/economics/2013/09/18/what-to-expect-from-t
By Victoria McGrane and Jon Hilsenrath
The Federal Reserve concludes its policy meeting later today, and it’s a
nail-biter. Fed officials are likely to emphasize they’re moving slowly and
carefully even if they do decide to start pulling back on their signature
bond-buying program, and will also seek to reassure... 阅读全帖
n***s
发帖数: 10056
28
来自主题: Living版 - termite found in the house
Hope you have termite bound. They will take care of it.
If no bound, call home insurance to assess damage. They will need to open
wall.
d****9
发帖数: 517
29
来自主题: NextGeneration版 - 求推荐baby book
我想买
Carter's Bound Keepsake Memory Book of Baby's First 5 Years
http://www.amazon.com/Carters-Bound-Keepsake-Memory-Laguna/dp/B
不知道有没有用过的,或者看过实体书的,给点评论
欢迎推荐其他的baby book,包括淘宝上的中文版的baby book
其实很想买本中文的,只是看了看淘宝,觉得大多数只是相册而已。
多谢!
s*********5
发帖数: 5637
30
谢谢大家支持:
刚刚收到80-20最新的newsletter。他们昨天理事会投票13-2.他们会帮大家一齐支持高
校录取时的不用“种族”把录取条件人为降低或提高。
看到这封信里提供的这个犹太爬藤率的数据挺让人咂舌的:
虽然犹太裔的人口只占美国亚裔人口的40%,他们的爬藤率是亚裔的两倍。这是为什么
呢?

Columbia 30%,
Yale 27%,
Harvard 25%,
U Penn 25%
Cornell 23%, and
Brown 22%.
我认为犹太人成功的原因是因为他们在二战后充分认识到了参政和团结的必要性。希望亚裔也能够像他们学习,愿意支持一个像80-20一样的组织,而不是因为个人的原因反对和诋毁它。
---------------------
80-20 Enters The Battle for Our College Bound
In a Board meeting last night, in a 13 to 2 vote, 80-20 resolves to file a
amicus curiae (Friend of the Court) le... 阅读全帖
t*******r
发帖数: 22634
31
其实我觉得 critical thinking 不在于逻辑强,当然逻辑是
critical thinking 的 building block 没错。
这么说,如果说 critical thinking 靠的是逻辑,那么计算
机应该是 critical thinking 最强的。恰恰相反,计算机是
critical thinking 能力极其悲催的。
但这世界上的确有一台计算机,有一些类似 critical thinking
的能力 ———— 赢了 Jeopardy! 的 IBM Waston ———— 你要是
去看看 Waston 的算法原理,就知道差别不在于逻辑。
我个人觉得 critical thinking 是高维度并行思考加 pruning
的综合能力。Critical thinking 太复杂了,说个简单的,高中
数学题的正确率问题。
我从小受到的教育就是没有“粗心”这一说,只有“正确率”这一说。
为啥有的人做高中数学题正确率始终高,秘诀在于任何一道题,
大脑在三个空间里同时做:(1)在符号空间演算,(2)在 spatial
空间 sketch,(2)在拓扑空间里抽象,然后... 阅读全帖
t*******r
发帖数: 22634
32
来自主题: Parenting版 - 二年级的数学题
外加 lower bound 和 upper bound 两边夹击。。。
不过我觉得大多数人先保持总和 11 不变吧,题目有两个 constraint,
把两个 constraint 同时放宽的话,不是把一维空间扫描线问题,变成
两维空间里狂扫?这题目不需要同时放宽两个 constraint 才能解吧。。。
t*******r
发帖数: 22634
33
来自主题: Parenting版 - 人生的追求
veli veli aglee。。。
绝大部分人得不到诺贝尔,而且诺贝尔是看对自然科学贡献,又不是光凭智力。。。
以鼓捣点自己喜欢的,又有点 challenge 的事情作为高端目标(upper bound),
以衣食无忧、生活轻松、房屋家事和谐作为低端目标(lower bound),才更实际
。。。个人看法。。。
u*****a
发帖数: 6276
34
来自主题: Parenting版 - 记录一个非法移民的路程
人的理解力有差距啊。我看了那句话后,第一反应是:
反 SCA-5,应该说:I am a Berkeley bound student. I just don't have the
correct skin color.
反大学录取逆向歧视,应该说:I am an Ivy-league bound student. I just don't
have the correct skin color.
反同性恋法案,应该说:I am a normal person. I just don't have the correct
bathroom to pee.
喜欢 UNSCHOOLING 的,应该说:I am a good student. I just don't have the
correct school to attend.
t*******r
发帖数: 22634
35
来自主题: Parenting版 - 关于gifted program的小疑问
分配率对无穷和适用,是公理吧。
不过收敛性的主要不是这个,而是竖式除法你没完全算完的时候,你得到的其实是一个
区间,而不是一个数,而对于这个问题,这个区间的 upper bound 和 lower bound 以
指数的速度互相逼近,所以是指数收敛。radix is 10.
t*******r
发帖数: 22634
36
来自主题: Parenting版 - 关于gifted program的小疑问
I see。其实应该叫 upper bound 和 lower bound,这样不一定要实数集上。虽然数学
分析多半是实数集上,但离散数学也可以在任何有序集合上,当然不一定有极限的概念
就是了。
其实你说的单调递增有上界数列的证明,一点儿也不错。。。但对马工来讲,这个也太
定性不定量了。computable 的要求,至少毛估也要稍微估一下,虽然大部分情况下,
确切估计收敛速度也是基本不可能。。。当然,初等数学定个性就好了。逻辑本身更重
要些。。。
Y********d
发帖数: 1478
37
我亲爱的尊敬的可爱的明白大爷,
接受过Harvard那么多年的教育,你肯定是很清楚normative and positive的区别的。
虽然认为能够把信仰和理论完全分开确实有幼稚的嫌疑,但是一定要blur他们之间的
boundary,就和一定要与政见本无太大差别的ID搞得渭泾分明势不两立一样,有过犹不
及的味道。至于,你的那个我完全同意的三条,和我引用的theory of cognition
development,到底有多少不能分开,你肯定比我明白。
还有就是,当你不太惜墨如金而不断被刺激出来发言的时候,我大概也越来越清楚你的
频道了。我真心感觉版上大部分家长也应该是这个频道。大家不都是管他柠檬还是苹果
都努力着养娃吗?虽然有没有皮神和poonie那种能力毅力的另说。大家不都主要在讨论
养娃的细节推娃的技术吗?比如皮神讲技术,你和poonie讲心理,潮水讲是hip-driven
还是shoulder-driven对于泳渣比较好。为啥我就咋看咋好呢?所以我有时候还真是不
太明白的地方就是,大家到底吵啥呢?
然后说说我自己,今天早上刚拿了个R&R,心情好,我多费点墨。
我娃就27个月,... 阅读全帖
x********e
发帖数: 35261
38
来自主题: Parenting版 - AMC 8 Problem 25 --- 解答
你之前那楼的什么实数连续性公理就是错的好嘛。。。还有那啥从lower bound扫到
upper bound
t******l
发帖数: 10908
39
来自主题: Parenting版 - 小学数学题
我看懂这个了。
不过好像 plus 的证明更强一些,plus 是 bound 在 n+1 位数字,你这个是 bound 在
n^2 位数字。

:任一整数10^k除以n的余数0<=R<n,
:考察n^2个整数10^k, 0<k<n^2,
x*****3
发帖数: 3236
40
貌似其实根本不organic,买的都白花了冤枉钱,唉。。。买普通的吧,又可以省钱了。
。。
Legal Notice
IN RE AURORA DAIRY CORP. ORGANIC MILK MARKETING AND SALES PRACTICES
LITIGATION in the U.S. District Court, Eastern District of Missouri, St.
Louis, Missouri
NOTICE OF PROPOSED SETTLEMENT OF CLASS ACTION AND
FAIRNESS HEARING FOR COMPENSATION AND RELEASE OF CLAIMS
If you purchased Milk Products (organic milk and/or butter) produced by
Aurora Organic Dairy and sold in the U.S. under certain brands, including
Aurora Organic Dairy's "High Mea... 阅读全帖
x*****3
发帖数: 3236
41
貌似其实根本不organic,买的都白花了冤枉钱,唉。。。买普通的吧,又可以省钱了。
。。
Legal Notice
IN RE AURORA DAIRY CORP. ORGANIC MILK MARKETING AND SALES PRACTICES
LITIGATION in the U.S. District Court, Eastern District of Missouri, St.
Louis, Missouri
NOTICE OF PROPOSED SETTLEMENT OF CLASS ACTION AND
FAIRNESS HEARING FOR COMPENSATION AND RELEASE OF CLAIMS
If you purchased Milk Products (organic milk and/or butter) produced by
Aurora Organic Dairy and sold in the U.S. under certain brands, including
Aurora Organic Dairy's "High Mea... 阅读全帖
f******s
发帖数: 314
42
来自主题: Returnee版 - 突然发现姚庆伟他导师很变态啊
姚庆伟 教授
天津大学特聘教授 天津市特聘专家
移动电话:15xxxxxxxxxxx
办公室:022-xxxxxxxxx
Email: x*[email protected]; x**[email protected]
教育背景
l 山西医科大学,学士, 1983
l 山西大学,硕士, 1988
l 伊利诺伊大学-芝加哥分校(Chicago), 博士, 1991
l 哥伦比亚大学(New York), 博士后, 1996-1998
工作经历
l 山西医科大学,助教, 1983-1985
l 山西大学,讲师, 1988-1991
l 北伊利诺伊大学 (DeKalb), 助理教授(tenure track), 1998-2003
l 北伊利诺伊大学 (DeKalb), 副教授(tenured), 2003-2010
研究方向
l 有机合成化学,有机合成方法,过渡金属化学及催化
l 自由基化学,有机反应机理,组合化学
... 阅读全帖
B******n
发帖数: 1920
43
【 以下文字转载自 Joke 讨论区 】
发信人: sunnyday (胖头鱼。按斤卖就赚了), 信区: Joke
标 题: Amtrak 火车行驶中居然散架了
发信站: BBS 未名空间站 (Tue Feb 6 14:09:24 2018, 美东)
Amtrak train breaks apart at 125 mph
https://nypost.com/2018/02/06/amtrak-train-breaks-apart-at-125-mph/
A high-speed Amtrak train bound for Penn Station broke apart as it was
cruising through Maryland on Tuesday, sources told The Post.
Modal Trigger
A high-speed Amtrak train bound for Penn Station broke apart as it was
moving at top speed through Maryland.
The 2150 Ace... 阅读全帖
E******d
发帖数: 3514
44
舔子进来说说,你不是夸羊爹做事认真吗?怎么最近火车老出事?
[在 Bifujian (哈哈儿) 的大作中提到:]
:Amtrak train breaks apart at 125 mph
:https://nypost.com/2018/02/06/amtrak-train-breaks-apart-at-125-mph/
:A high-speed Amtrak train bound for Penn Station broke apart as it was
:cruising through Maryland on Tuesday, sources told The Post.
:Modal Trigger
:A high-speed Amtrak train bound for Penn Station broke apart as it was
:moving at top speed through Maryland.
:The 2150 Acela was traveling from Washington D.C. to the Big Apple when th... 阅读全帖
b*****n
发帖数: 3774
45
nb=north bound
sb=south bound
the earth is round,
nb=sb.
LOL
u****d
发帖数: 23938
46
☆─────────────────────────────────────☆
mikeandlily (mike) 于 (Mon Jun 6 15:58:27 2011, 美东) 提到:
再过几个小时就要上飞机了,正好我的id也解封了,就随便说几句吧。注明一下,这些
只代表我个人的观点。
关于股票和炒股。我已经说了很多了,不愿意也不可能再多费唇舌了,省得招人谤议。
关于股版。说到股版,我还是有一点感情的,当初我是一个十足的菜鸟的时候,从油工
和名菜那里学了不少东西,说实话,主要是从这两个人身上学的,别人的挺少,很多大
牛是不愿意分享的。但是后来由于众所周知的原因,很多人被逼进入俱乐部,我就是那
时候来到pennystock club的,想当初坏鱼还在的时候,俱乐部四大水王四大水母多么
风光,每天晚上都有大量的话题可以讨论,除了政治,我们什么都谈,真是一段难以让
人忘怀的时光。然而,正应了那句话,天下无不散之筵席,大S回国以后突然觉得没意
思了,所以我才来股版待了大概大半年吧。我的初衷就是想回馈一下股版,毕竟我还是
菜鸟的时候也学到了一些东西,可是结局并不好,呵呵,我已经预... 阅读全帖
U********f
发帖数: 2482
47
来自主题: Stock版 - day trading rules
day trading rules
Gap(intraday) up/down rule: after the first relative big gap (for example, >
2p for ER2), there will be a small window (usually less than 10 minutes) for
trapped position to cut or for new position to setup, because most time
there will be another gap after the small window. Gap means MM's action.
Retailers cannot cause gap unless force cut loss.
trend line theory: when trend line break, will have big move. Either break
up or down.
extreme theory: market always go to extreme, a... 阅读全帖
H******i
发帖数: 4704
48
来自主题: Stock版 - day trading rules
Many thanks!

Gap(intraday) up/down rule: after the first relative big gap (for example, >
2p for ER2), there will be a small window (usually less than 10 minutes) for
trapped position to cut or for new position to setup, because most time
there will be another gap after the small window. Gap means MM's action.
Retailers cannot cause gap unless force cut loss.
trend line theory: when trend line break, will have big move. Either break
up or down.
extreme theory: market always go to extreme, and t... 阅读全帖
l*******a
发帖数: 467
49

good point.
对 市场有效性 肯定是 bounded to some extent,
Simon 提出了bounded rationality 获得了诺贝尔奖,这个我觉得没问题(http://www.nobelprize.org/nobel_prizes/economics/laureates/1978/simon-lecture.pdf
但是更重要的是你认为市场多有效,我认为是 near-perfectly efficient most of
the time, but could be irrational due to herding behavior, manipulation, etc
.etc.
我相信,在crash的时候,大家都在抛售,我也会抛,因为我觉得别人有我没有的信息
。但是大部分时候还是理性的。哈哈。
l*********m
发帖数: 16971
50
来自主题: Stock版 - 2200 is coming?
The S&P is range bound and the fact that it keeps failing at or near all-
time highs is a bad sign for bulls. Is that all there is for this bull
market?
Not so fast. Jonathan Krinsky, chief market technician at MKM Partners has
identified patterns that suggest the price action in the S&P (^GSPC) is
actually quite positive.
Krinsky said that although it’s true the market is struggling at its highs,
the S&P is also failing to break below its lows. “We’re truly range bound
and when that happens (te... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)