n*****g 发帖数: 178 | 1 本帖内容来自于:
发信人: segin (segin), 信区: JobHunting
标 题: 明天ONSITE攒人品,发面试知识点总结!!
发信站: BBS 未名空间站 (Thu Feb 4 13:40:29 2010, 美东)
http://www.mitbbs.com/bbsann2/life.faq/JobHunting/17/D128425435
非常好的总结啊!!!!攒人品再转发一次。
C: pointer, call by value/pointer, return the pointer of a local variable,
string manipulations, source code of some important C string subroutines
(strcpy, strtok, etc), itoa, atoi, static variable and fuction, name
mangling,
memory allocation
http://www.eskimo.com/~scs/C-faq/faq.html
C++: name... 阅读全帖 |
|
t***o 发帖数: 160 | 2 【 以下文字转载自 SanDiego 讨论区 】
发信人: tubao (兔兔), 信区: SanDiego
标 题: Analytical Research Chemist Needed - Local Only ( San Diego)
发信站: BBS 未名空间站 (Fri Sep 14 16:11:14 2012, 美东)
You can apply through the online-application system. You may contact me via
MITBBS mail for more information. Thanks.
------------------------------------------------------------
Req No. 9225BR
Job Title RESEARCH CHEMIST
Employment Status Full Time
Employment Type Exempt
Country United States
Location US-CA-Carls... 阅读全帖 |
|
t**********g 发帖数: 46 | 3 POSITION SUMMARY
Reporting to the Director of Sales and in close cooperation with the CEO you
will be an integral member of Union Semi’s Sales and Field Applications
Team. You will work with our sales managers, business units, corporate
applications teams and distribution partners to discover new sales
opportunities and provide technical application support for all of Union
products. You will be responsible for designing a portfolio of analog and
mixed-signal products into Customers’ application... 阅读全帖 |
|
c********t 发帖数: 5706 | 4 你如果说的是 breadth first travel, 是用queue走一遍,但没法做到分层
如果是层打印,我只会写以下代码,不但需要多次access nodes,还要先求高度。你有
什么办法一次遍历层打印吗?多谢。
public void printLevelOrder() {
for (int i = 1; i <= this.maxHeight(); i++) {
printLevel(this, i);
System.out.println();
}
}
public void printLevel(Node node, int level) {
if (node == null)
return;
if (level == 1)
System.out.print(node.value + " ");
else {
printLevel(node.left, level - 1);
printLevel(node.right, leve... 阅读全帖 |
|
c********t 发帖数: 5706 | 5 你如果说的是 breadth first travel, 是用queue走一遍,但没法做到分层
如果是层打印,我只会写以下代码,不但需要多次access nodes,还要先求高度。你有
什么办法一次遍历层打印吗?多谢。
public void printLevelOrder() {
for (int i = 1; i <= this.maxHeight(); i++) {
printLevel(this, i);
System.out.println();
}
}
public void printLevel(Node node, int level) {
if (node == null)
return;
if (level == 1)
System.out.print(node.value + " ");
else {
printLevel(node.left, level - 1);
printLevel(node.right, leve... 阅读全帖 |
|
e****e 发帖数: 418 | 6 Breadth First Traversal. Don't need to save the line number. It's more like
the print by level with a delimiter inserted.
use
saved |
|
b*******n 发帖数: 847 | 7 如题,我想实现先把整个tree breadth-first traverse,traverse结果放在vector里
(vector allPath)
,每层遍历到了最后加一个tag node,最后把vector从后往前scan。想法很简单,但
code总是有错。我对vector不熟,估计是member function没用对,请大家帮忙看看,
多谢了!
vector > levelOrderBottom(TreeNode *root) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
vector > traversal;
vector allPath;
if(!root) return traversal;
TreeNode *tag=new TreeNode(0);
al... 阅读全帖 |
|
x*********e 发帖数: 15 | 8 逃不出leetcode啦~
anagram,palindrome,binary tree的公共祖先等~
还有就是sparse vector的dot product,breadth first search
都是非常基本功的题 |
|
|
|
P****d 发帖数: 137 | 11 原帖地址
http://www.mitbbs.com/article_t/JobHunting/32595949.html
“You are in a social networking, and you want to share a picture to your
friends and your friends of friends. How can you find out your friends and
your friends and friends efficiently.
这个也是不需要写code。我只想到了最笨的breadth first search 的方法,O(n^2).然
后被问怎么能做到低于n^2。提示说是用friend relation的symmetry。我觉得即使用了
symmetry也还是O(n^2)啊。不懂,请大牛提示!“
friend relation symmetry是说找另外一个人同时做BFS,然后自己和那个人一起做BFS
做一层看有没有共同好友吗?如果有共同好友那个人就是我的Friend of Friend吗?这
样更慢吧
自己这里做两层BF... 阅读全帖 |
|
d*********y 发帖数: 81 | 12 Sr. Embedded Software Engineer- Tool Development- Zigbee Technologies-Boston
MA
Silicon Labs (formerly Ember) seeks a Sr. Software Engineer to work on our
wireless development tools and reference application software. As part of
our tools and applications team, you will help build innovative network
analysis tools, graphical application builder tools and embedded networking
software which runs on our 802.15.4 system-on-chip. Silicon Labs customers
use these tools and our reference application so... 阅读全帖 |
|
p***r 发帖数: 1098 | 13 #1
Tool Engineer
这个职位我可递简历到Apple内部的recruiter手里
要求精通python, 3-5年工作经验, solid computer science background
#2
Embedded Engineer
需要3到5年以上工作经验
这个职位我可以递简历到Hiring Manager手里
Develop and test PC board-level hardware for new sensor prototype systems,
including a micro controller, digital ICs, and analog ICs
Understand and communicate the potential hardware requirements of a
prototype system
Work with internal staff as well as external consultants and vendors to
acquire, develop and test hardware and ... 阅读全帖 |
|
c***z 发帖数: 6348 | 14 How senior are you? For a junior guy like me, horizontal opportunities are
more important than vertical ones. For a senior guy, maybe the other way. It
is the old depth vs breadth trade off problem.
The the sensor data problem, even if you have a great solution, can you push
it through the management?
If it is really difficult to choose, choose the one with more money.:) |
|
m********t 发帖数: 13072 | 15 下面我给出的list上的内容,都属于基本常识,无论对方考不考,你都应该了解优越性
和弱点的, 术语中文我不太会说
我脑海里能想到的(有很多我暂时没想起来的,不等于你就不该掌握了)
topological sorting
direct acyclic graph
relaxation method
floyd-warshall
Dijkstra's
Prim
Bellman-ford
Strongly/Weakly connected components
depth/breadth first search
Minimum spanning tree
and so on , heap, binary heap, B-tree, BST, linked-list
所有这些东西,无论考不考,你都该已经知道了,才可以预约面试
刷题是没什么本质性作用的,你刷了200多道题,很可能都是tree structure的,其他
部分没刷到,就傻眼了
除此之外,你要掌握scheduling的相关知识,
然后再去学一些常见的机器语言,C++或者java,这才是正确的学习顺序
一上来就用IDE/eclip... 阅读全帖 |
|
B********4 发帖数: 7156 | 16
会是o(n)
queue的长度是不定的,最大长度等于树的宽度,不是高度(深度)。题目中只说是
binary tree。如果是complete binary tree, 应该是n/2。
也许我的表达方式不对,准确地应该是
time complexity O(bxd)
space complexity O(b)
where b is the breadth of the tree, and d is the depth of the tree.
但是BFS一般都是写时间O(V + E) and 空间O (V)。实际上我对这个空间O (V)也不是太
明白,因为显然queue不用把所有节点都装进去。我个人以为这是考虑最坏情况。
因为这个题的数据结构不是图,是二叉树,不用管V,我想了几秒钟就还是写了O(n), O
(n).
反正现在已经绕糊涂了。 |
|
e***i 发帖数: 231 | 17 breadth first search?
节点交替往上一层遍历,然后找交集
B => A
J => CF
Not on this level
A => A
CF => AEM
A is the common ancestor, so B&J are related |
|
b*****n 发帖数: 618 | 18 breadth first search就可以了,每次把相邻能到达的0都放到queue里面就行 |
|
s***l 发帖数: 2 | 19 征两个QA Engineers,一个负责eBay的Close5: https://www.close5.com/
另一个是ECG。地点均在三藩市区。需有合法工作身分 (OPT, H1B, etc),
薪水可参考glassdoor。意者请将履历寄至[email protected]
/* */
=======================================================
*Close5
Primary Job Responsibilities:
Close5 QA engineer should be a self-aware, self-starting individual with
automation skills; Someone who has the depth and breadth of technical
knowledge to know the “right way” to automate mobile applications. The
right person for this job will pride th... 阅读全帖 |
|
j********r 发帖数: 127 | 20 1. return min + (rand() - min) % (max - min + 1);
2. DFS (depth first search) or BFS (breadth first search)
the
not
cell
helper |
|
f**********e 发帖数: 288 | 21 给一个 n*m 的房间,房间里存在各种可能的墙,房间的格子里已经放了 e 个器材,要
求新放一个器材,放置位置距其它 e 个器材的距离最近。Breadth-first search.
唉, 不会做哦。。 |
|
R******e 发帖数: 94 | 22 sorry,我看题没看仔细
我以为都是成对出现不会有落单的
如果有落单的greedy确实没办法做,直接breadth first search暴力吧 |
|
s*********p 发帖数: 130 | 23 准备面T家,HR给了这几个组,
不知道各位大神有没有什么好的建议?哪些组比较核心,主要中国人多一些?
主要想选 Platform engineering, 和 TellApart,不知道有没有什么建议?
BLUEBIRD / The Bluebird team creates new, bold user experiences for Twitter
- specifically Twitter for iOS, Twitter for Android,and Twitter.com. We’re
constantly thinking about tweets, timelines, and all the diferent ways
people use Twitter. We build theback end services and the front end
experiences that drive the Twitter experience.
BUSINESSES LOVE TWITTER / We create products and services whi... 阅读全帖 |
|
d*********p 发帖数: 1531 | 24 【 以下文字转载自 USANews 讨论区 】
发信人: DonaldTrump (Make America Great Again!), 信区: USANews
标 题: Trump将招4000人,广告已经发布,欢迎投简历!
发信站: BBS 未名空间站 (Thu Nov 10 17:40:08 2016, 美东)
https://www.greatagain.gov/news/help-wanted-4000-presidential-appointees.
html
Help Wanted: 4,000 Presidential Appointees
NOVEMBER 06, 2016 • MAKING NEWS
More than 4,000 political appointees, many of whom hold important leadership
and policymaking positions, will be heading out the door next year with the
change in administrations.... 阅读全帖 |
|
f***e 发帖数: 5443 | 25 【 以下文字转载自 USANews 讨论区 】
发信人: feebe (现在是工作AA,以后是监狱AA), 信区: USANews
标 题: trump改革真的要开始了
发信站: BBS 未名空间站 (Fri Nov 11 01:28:27 2016, 美东)
这是总统能提名的 4000个位置
以前,都是总统给之前的捐款大户,
trump现在拿出来真正招能为国分忧的人才
美国历史第一次!
“There are 1,212 senior leaders, including the Cabinet secretaries and
their deputies, the
heads of most independent agencies and ambassadors, ”
包括大使!!
trump真是要 make American great again!
trump和建制派真的要切割了
有这4000 leaders,不会怕建制派的捣乱
trump,没有让我们失望!!
it is time to server your country
https://www.greatagain.g... 阅读全帖 |
|
c********t 发帖数: 5706 | 26 试试把 toCharArray 往上挪到 String s...下面。
时间tree 遍历,O(wordList.size() * beginWord.length())
空间tree breadth |
|
发帖数: 1 | 27 Position: Software Engineer
Location: Bellevue, WA
Duration: 6+ Months
Description:
Job responsibility The Programming Technologies Lab of Huawei is seeking
candidates with expertise in the area of compiler implementation and
optimization. As a software engineer contractor, you will work in a highly
talented team, and are expected to contribute to the design and
implementation of a new general purpose programming language, as well as
building prototypes and production code using the new language... 阅读全帖 |
|
O********e 发帖数: 775 | 28 Uber's Data Platform team is looking for experienced Software Engineers (no
new grads please). The goal of the team is to bridge together the different
data systems at Uber to create one powerful cohesive platform.
You will need
- Bachelor's degree or higher in an engineering field (Computer Science,
Computer Engineering, etc).
- proficient programming experience in one more programming languages such
as Python, Java, Go, etc.
- strong understanding of different storage architectures and their... 阅读全帖 |
|
o****y 发帖数: 790 | 29 Here is my dilemma, any shrewd strategist can offer a sound opinion?
Basically, I am a EE fresh PhD, facing three choices:
1. academic job: a 3rd tier (possibly 4th tier) research school in nowhere (
east coast), tenure-track.
2. industry job: a startup with good salary, got to stay in bay-area.
3. post-doc: I can get a researcher position in Berkeley for year, (their
project is quite visible and can potentially expand my academic breadth)
then put me back in market, hope to get in better school |
|
z******7 发帖数: 2 | 30 Please send CV to: z*******[email protected]
Telephone: +86 (0)10 85916462
Job Description – Corporate IT Security Architect
Position Name: Corporate Information Technology Security Architect (Band
9)
Location: China
Immediate Manager: Chief Information Security Officer
JOB DESCRIPTION – DUTIES AND RESPONSIBILITIES
Reporting to the Chief Information Security Officer, the Corporate
Information Technology Security Architect will deliver technical
architecture and standards for Lenovo projects... 阅读全帖 |
|
C*****n 发帖数: 858 | 31 From LinkedIn
http://iv.avature.net/careers/JobDetail/Bellevue-WA-United-Stat
Mechanical Engineer (ability to speak Mandarin) - Consultant, IV Lab
Bellevue, WA, United States
Ref#: 2803
Date published: 10/17/13
Intellectual Ventures (IV) Lab is part of Intellectual Ventures' efforts to
support invention. IV Lab works on the very beginning stages of invention,
validating the concept and refining the technology to demonstrate its
potential for commercial or humanitarian use. IV Lab believes in th... 阅读全帖 |
|
c*r 发帖数: 5 | 32 Technical Support Engineer (Consumer Electronics)
Cable Matters is a market leading provider of technological supplies and
solutions in the field of Consumer Electronics. Most importantly, we offer
an unrivaled ability to integrate the best supply of resources needed to
implement the latest cutting edge technological advancements in the shortest
amount of time. Not only does Cable Matters provide a large breadth of
innovative accessories, we also educate consumers on the best product
offerings... 阅读全帖 |
|
发帖数: 1 | 33 Cell Research is seeking two full-time, in-house scientific editors to join
its editorial team. The Scientific Editor will be trained to play major
roles in providing immediate and satisfactory supports to the Editor-in-
Chief and Deputy Editor-in-Chief in all aspects of manuscript processing,
which include but are not limited to assessing submitted papers, overseeing
the reviewing process, and commissioning research highlights and review
articles. The key qualities the journal looks for are bre... 阅读全帖 |
|
发帖数: 1 | 34 Responsibilities:
• Work involves a good amount of research in performance analysis &
optimizations, and program analysis tools design, prototypes and
implementation with focus on distributed and cloud computing.
• Proactively engage with customers to identify opportunities for
cloud technology solutions; bootstrap projects from scratch; and turn ideas
into prototypes and productions.
• (Last but not least) Be creative, keep on learning, and stay
connected w/ the commu... 阅读全帖 |
|
n******x 发帖数: 1 | 35 Apply:
http://grajob.com/blackstone-is-hiring-private-wealth-solutions-2019-summer-analyst-in-new-yorkusa/
Private Wealth Solutions – 2019 Summer Analyst
New York
Job Description:
Firm Profile:
Blackstone is one of the world’s leading investment firms. We seek to
create positive economic impact and long-term value for our investors, the
companies we invest in, and the communities in which we work. We do this by
using extraordinary people and flexible capital to help companies solve
problems. Our... 阅读全帖 |
|
s********r 发帖数: 2308 | 36 好吧,ER医生应该仍然保持高薪。所有动手术的,比如各种外壳手术/牙医/美容医生也
短期难以取代。
但是那些什么family medicine, 什么内分泌专科这类纯靠着知识积累和更新的医生早
晚被数据库代替这点大家觉得没什么问题吧?比如下面关于IBM的Watson系统:
“Watson's ingestion of more than 600,000 pieces of medical evidence, more
than two million pages from medical journals and the further ability to
search through up to 1.5 million patient records for further information
gives it a breadth of knowledge no human doctor can match.
According to Sloan-Kettering, only around 20 percent of the knowledge that
human docto... 阅读全帖 |
|
y****i 发帖数: 17878 | 37 click "see details" and read
"Credit Score Weight: High
Total accounts is another measure of your creditworthiness. Consumers with
more credit accounts generally have better credit scores because it means
more lenders are willing to grant credit. This metric represents the total
number of accounts listed on your credit report. A breadth of different
account types is indicative of good credit.
Total Accounts information is based on your TransUnion credit report updated
on Feb 16, 2010."
Credit |
|
a*****l 发帖数: 244 | 38 according to Credit Karma
TOTAL ACCOUNT: Credit Score Weight: Low
Total accounts is another measure of your creditworthiness. Consumers with
more credit accounts generally have better credit scores because it means
more lenders are willing to grant credit. This metric represents the total
number of accounts listed on your credit report. A breadth of different
account types is indicative of good credit.
You can choose not to believe it.... |
|
b***a 发帖数: 6422 | 39 试了一下那个查CREDIT SCORE的网站,发现自己7张卡是D。一开始以为是卡太多了,后
来发现是太少了。评语是:
Total accounts is another measure of your creditworthiness. Consumers with m
ore credit accounts generally have better credit scores because it means mor
e lenders are willing to grant credit. This metric represents the total numb
er of accounts listed on your credit report. A breadth of different account
types is indicative of good credit.
发现A档需要21+张卡。FT啊! |
|
z****l 发帖数: 5282 | 40 ☆─────────────────────────────────────☆
ananatl (ananatl) 于 (Tue Jul 13 14:45:47 2010, 美东) 提到:
5年前来美国,开始申请信用卡,直到最新申请的3张今天也全批了。 暂时做个小结。
抛砖引玉,呵呵。
2005 Citi Dividend,第一张,5%菜油etc,后来被转成5%rotation,用到现在。
2006 被忽悠上了target credit card,一直不用,被cancel。
2007 Citi PremierPass Elite,开户20K+ bonus。免年费,一直到现在
2007 Chase Freedom,开户$250,用到现在。
2008 Citi Business,Discover Business 开户$100+,用到现在。
同时悲剧Citi Professional, Discover送GPS那个卡。
2009 Citi Forward 5%吃饭,AMEX delta,Fidelity 2% everything, Chase
Sapphire 送$250。
2... 阅读全帖 |
|
a*******e 发帖数: 3897 | 41 equifax给了个免费查分数的offer,刚去查了下,分数不高。后面最重要一项解释是,
您开卡过多(我就十来张卡,在creditkarma刚刚到C)。我抄上来大家看看。但是
creditkarma说卡越多越好,不到21张以上都拿不到A。这两家到底哪个说得有道理,大
家给评评。
Equifax:
You have too many open credit cards.Your credit report shows that you have a
high number of credit cards. People with a higher number of open credit
cards as compared to all credit accounts are considered riskier to lenders
because they have the potential to take on too much revolving debt by
carrying balances on each of these accounts. In general, ... 阅读全帖 |
|
a*****g 发帖数: 19398 | 42 美国儿童的数学教育——How are our children doing in Math?
http://www.philly.com/philly/education/How_are_our_children_doi
摘要:
英语影响了孩子的最基本数学能力
“Our education system is not designed to create and shape a math brain.”
建议:
Teaching a math hierarchy from non-symbolic to symbolic to patterns and
relationships and ultimately to conceptual understandings.
正文:
Of 57 industrialized nations that participated in a 2011 Trends in
International Math and Science Study (TIMSS), United States fourth graders
ranked 11th pla... 阅读全帖 |
|
s***n 发帖数: 2366 | 43 http://www.npr.org/2012/06/20/155431944/asian-americans-on-the-
On Tuesday, the Pew Research Center released a study that found Asian-
Americans have surpassed Hispanics as the fastest growing racial group in
the U.S. Plus, the report showed that they're the highest earning and best-
educated. Host Michel Martin discusses the findings and the implications of
these demographic changes with three experts.
Copyright © 2012 National Public Radio®. For personal,
noncommercial use only. See ... 阅读全帖 |
|
a*****g 发帖数: 19398 | 44 美国儿童的数学教育——How are our children doing in Math?
http://www.philly.com/philly/education/How_are_our_children_doi
摘要:
英语影响了孩子的最基本数学能力
“Our education system is not designed to create and shape a math brain.”
建议:
Teaching a math hierarchy from non-symbolic to symbolic to patterns and
relationships and ultimately to conceptual understandings.
正文:
Of 57 industrialized nations that participated in a 2011 Trends in
International Math and Science Study (TIMSS), United States fourth graders
ranked 11th pla... 阅读全帖 |
|
J*******p 发帖数: 1129 | 45
对,在美国的homeschooler 中,大约10% 用 classical education, 而这其中只有10%
是采用传统的 classical education,也就是说,现在的 classical educators 大多
为 Neoclassical Education, 就是 Susan Wise Bauer 一派的,因此也是人们听到
Classical Education 所知道和想到的。
Neoclassical Education 和 Traditional Classical Education 间的区别,某个
Charlotte Mason homeschool 论坛上的讨论,很到位。
There are 2 distinct types of classical education: Neoclassical Education (
well-trained mind, Tapestry of Grace, Classical Conversation) and
Traditional classical education (Latin-centere... 阅读全帖 |
|
d*****s 发帖数: 5610 | 46 我先来引用一段二战德国Commander-in-Chief of the Reichswehr哈麦施坦因-埃克沃
德的话,
I divide my officers into four groups. There are clever, diligent, stupid,
and lazy officers. Usually two characteristics are combined. Some are clever
and diligent — their place is the General Staff. The next lot are stupid
and lazy — they make up 90 percent of every army and are suited to routine
duties. Anyone who is both clever and lazy is qualified for the highest
leadership duties, because he possesses the intellectual clarity a... 阅读全帖 |
|
n****s 发帖数: 138 | 47 看一下GOLDMAN的报告,第15叶,您就明白了,到底应该在那儿呆着。 粘贴的图片是高盛最新出的,小心被糊油。中国母亲那点奶水,油美国是9倍,天然气10倍,煤八倍,铜和金子10倍,水和土地5倍,这些还都在地理面没用,用的都是别人的。最气的是,母亲那点奶水,还都被鸡少数人给挥霍。中国是最应该讲究均富的,可是。。。
Advantage Four: Wealth, Natural Resources,
and Great Location
The US is an “empire of wealth.”21 At $14.6
trillion, its GDP is the highest of any country in
the world; at $47 thousand, its GDP per capita
is the highest of any country with a population
over 25 million people. It has a wealth of natural
resources and arable land as shown in Ex... 阅读全帖 |
|
l*******o 发帖数: 12469 | 48 俺觉得这个作者说的东西有道理。但是真的要how to fix it,各位如何看?
Julie Ng, originally from Boston, now living in Munich as a designer and
entrepreneur.
The internet startup model is broken and how to fix it
The market for internet companies is broken. We cannot continue starting
companies with millions in venture capital and no business model from day
one that generates revenue, and more importantly profit.
Don't rejoice at Facebook's plummeting stock. It’s an ominous sign for us
all. Companies are willing to pay boatl... 阅读全帖 |
|
y***r 发帖数: 16594 | 49 首先就是结论:老大说过了,不好玩。
1.首先就是,当前是熊市,大熊市,SPX 400天均线从2003到现在一直很准。
http://stockcharts.com/h-sc/ui?s=$SPX&p=W&b=3&g=0&id=p71477365193&a=141290386
2.DIA,QQQQ,SPY不平衡,正真的底部这几个要平衡。图我就不上了,把这三个ticker
放到goog finance的图上,很容易看出来。DOW触及三月底,存在rebound的可能,但是
罪魁祸首XLF已经率先创新低,所有DOW紧跟着破三月底也有可能。
QQQQ,head and shoulder,50.5-48=2.5,所以first target 45.5.
IWM,昨天破72,今天回测,target 68.
2008最大的牛IYT,99-92=7,target 85.
3.VIX形成新的上升线,但最近一直没有突破24,没有形成panic,不具备底部的条件。
http://stockcharts.com/h-sc/ui?s=$VIX&p=D&b=5&g=0&id=p69615394348&a=128234 |
|
y***r 发帖数: 16594 | 50 The first day of a bounce can sometimes be a good indication of whether that
bounce is likely to succeed or roll over. I recently showed an example of
how a weak bounce (price-wise) can suggest a downside edge. That study is in
effect again tonight.
Breadth can also be important to watch. After seeing down volume account for
about 90% of total NYSE volume during Tuesday’s selloff, today’s bounce
higher only rebounded with about 56% up volume. I performed a study which
looked at other times the m |
|