由买买提看人间百态

topics

全部话题 - 话题: elem
1 2 3 4 5 6 7 下页 末页 (共7页)
m***r
发帖数: 294
1
In html , I want to add more element in simple
way without createNode... So,
In javascript I wrote: document.getElementById("test").innerText = " value=\"NS000018\">NS00018";
However, document.getElementById(elem).innerHTML =
x******a
发帖数: 6336
2
来自主题: Programming版 - 请教python
请问 elem=elem-np.mean(elem)问什么不起作用?谢谢
>>> for elem in x:
... print elem
...
[ 1.53467338 -0.88371367 -0.65095971]
[ 0.47587905 0.48324293 -0.89523318]
>>> for elem in x:
... elem=elem-np.mean(elem)
... print elem
...
[ 1.53467338 -0.88371367 -0.65095971]
[ 0.45458278 0.46194667 -0.91652945]
>>> x
array([[ 1.53467338, -0.88371367, -0.65095971],
[ 0.47587905, 0.48324293, -0.89523318]])
m***n
发帖数: 2154
3
来自主题: JobHunting版 - 讨论下找两个元素和为0的题延伸
public class CheckZeroSum {


public static void main(String args[]) {
int elem[]={-4,-3,-2,-1,2,3};
int elem2[] = {-5,-1,0,1,2,4,5};
checkZero(elem,4);
checkZero(elem2,2);
}

public static void checkZero(int[] elem, int n) {
//left, right
//left window size, right window size
int left = 0 ;
int right = elem.length-1;
int left_windowsize= n/2;
int right_windowsize= ... 阅读全帖
b********6
发帖数: 97
4
来自主题: JobHunting版 - LeetCode Jump Game [Runtime Error]
神奇的是
Old OJ 大集合通过
new OJ Runtime Error Last executed input: [0,2,3]
百思不得其解, code 如下。
public class Elem {
int index;
int step;
}
public boolean canJump(int[] A) {
// Start typing your Java solution below
// DO NOT write main() function
int len = A.length;

if (len == 0) return false;
if (len == 1) return true;
if (len == 2) return A[0] != 0;

Stack s = new Stack();
... 阅读全帖
y***n
发帖数: 4103
5
新浪科技讯 北京时间10月20日消息,世界最昂贵的房车EleMMent Palazzo已经开售,
售价达到惊人的190万英镑(约合298万美元)。这座“轮子上的宫殿”长40英尺(约合12
米),由奥地利公司Marchi Mobile打造,采用地暖供暖,车内建有酒吧,包括车顶阳台
在内的面积达到215平方英尺(约合20平方米)。
这辆太空时代的房车主卧室非常宽敞,摆放着一台40英寸(约合1米)电视机,除此
之外,套房浴室、利用雨水的淋浴设施、独立卫生间和休息室也是应有尽有,驾驶室内
也摆放着一张双层床。EleMMent可连接移动互联网,里面建有壁炉,安装卫星电视,采
用流媒体监控系统,车身则涂有可在黑暗中发光的抛光材料,用于提高夜间行车的安全
性。EleMMent令人印象最深的地方莫过于“敞篷式休闲室”,按一下按钮便可打开。它
采用地暖供暖系统,车内建有一个酒吧。
Marchi Mobile表示,510制动马力的发动机能够让20公吨重EleMMent的最大时速达
到93英里(约合每小时149公里),燃烧每加仑燃料可行驶13英里(约合20公里),这种高
燃效要归功于出色的空气动力学设计。
... 阅读全帖
b*******y
发帖数: 1240
6
在delete head的时候,书上有两种写法
一是P27
bool deleteElement( IntElement **head, IntElement *deleteMe )
{
IntElement *elem = *head;
if( deleteMe == *head ){ /* special case for head */
*head = elem->next;
delete deleteMe;
return true;
}
}
第二种是 P37
bool remove( Element *elem ){
if (elem == head) {
head = elem->next;
delete elem;
return true;
}
...
那种方法是对的
h*****s
发帖数: 821
7
来自主题: SanFrancisco版 - 买房要看 LOCATION --- 学区篇 (3)
谢谢分享,补充一下,94087 里面还分若干小区:
1) Cherry Chase:(Chery Chase Elem/Sunnyvale Middle/Homestead high)
Boundary: (I-85, El Camino, Mary,Fremont) + (Remington, Mary, Hollenbeck,
Fremont)
Very good elementary. Review非常好。不只是分高,老师,after school之类的都很
好,而且人种比例比较平均,老印数量远远低于Cupertino学校,白人占1/3。
Sunnyvale Middle由于包括了很多El Camino以北的地区,变成一流学校不可能。
Homestead High白人比较多,比Lynbrook/Monta Vista/Cupertino 好多了。
2) Cumberland: (Cumberland Elem/Sunnyvale Middle/Homestead High) Boundary:
(El Camino, Mary, Remington, Sunnyvale-Sar... 阅读全帖
d****n
发帖数: 233
8
来自主题: JobHunting版 - Is this a DP problem?
Good idea. So the time complexity is O(N*logK)? I was studying DP and
tempted to solve problem by it. For this one, I'm thinking of another way to
solve it. Complexity is O(N*K):
Assuming we sort all the positions into a new array A, where each element A[
i] contains two members (position, word), 0<= position < N, 0<=word < K; the
elements are sorted by the position in ascending order.
Elem {
int position,
int word
}

Elem A[] = sorted Elems by position
Elem B[K];
b******7
发帖数: 92
9
来自主题: JobHunting版 - 问个C++的基础问题
vector的大概的实现(省略很多细节)。
如果在for循环里面定义vector,则会调用构造和析构函数,导致elem不断的new和
delete
而如果在外面定义,则只会调用vector的构造和析构一次,即一次new和delete
template
class vector{
public:
vector(size_t n){capacity = n;elem = new T[capacity];size=0;}
~vector(){delete [] elem;}
void clear(){size=0;}
....
....
private:
T * elem;
int capacity;
int size;
....
};
y*****i
发帖数: 141
10
来自主题: JobHunting版 - 问道G家的题
照着Maxthon的编码解法写了一个:
#include
#include
#include
#include
using namespace std;
bool bool_vec_none(const vector & vec) {
for(auto elem : vec) {
if (elem) {
return false;
}
}
return true;
}
bool bool_vec_all(const vector & vec) {
for(auto elem : vec) {
if (!elem) {
return false;
}
}
return true;
}
string word_abbreviation(string target, vector dict)
{
if (t... 阅读全帖
t**r
发帖数: 3428
11
看到了这个一个实现。也是把method用synchronized包起来:
http://codereview.stackexchange.com/questions/3138/linkedhashma
public class LRUCache {
private final Map cacheMap;
public LRUCache(final int cacheSize) {
// true = use access order instead of insertion order.
this.cacheMap = new LinkedHashMap(cacheSize, 0.75f, true) {

@Override
protected boolean removeEldestEntry(Map.Entry eldest) {
// When ... 阅读全帖
d*****n
发帖数: 28
12
有住Arlington Heights 或了解25 school district 的朋友说说下面四个小学那个比
较好,还有两个初中。
1. Patton Elem
2. Olive-Mary Stitt Elem
3. Windsor Elem
4. Dryden Elem
Middle School
Thomas Middle School
South Middle School
L***s
发帖数: 1148
13
LEGB scoping rule
具体实践上,可以在 local 再引用一次 global
比如标准库里的小顶堆实现里的几句:
https://hg.python.org/cpython/file/2.7/Lib/heapq.py#l215
_heappushpop = heappushpop
for elem in it:
_heappushpop(result, elem)
这里 heappushpop 是另外一个函数,在 global scope
如果直接放 for 循环里,每次都得先 lookup local scope,
再查 enclosed 和 global scope,就慢了。
所以在 local scope 里用 _heappushpop 来引用 global scope 的对象
for elem in it:
heappushpop(result, elem)
m*****g
发帖数: 226
14
来自主题: JobHunting版 - Is this a DP problem?
前面贴过好象
for each work, maintain a queue
scan
if(doc[i]==word[j])
queue[j].push[doc[i]];
if( queue[0]...queue[i] all have 1 elem && queue[j] has 2 elem)
update smallestWindowSize;
dequeue queue[0]...queue[i] until every queue has only 1 elem.
endif
end scan.
f******5
发帖数: 104
15
BST, O (n*(logW+k))
void printBST(multiset > &BST, int k){
int i=0;
multiset >::iterator it=BST.begin();
for(;i cout<<(*it)<<",";
++it;
}
cout< }
void topK_SlideWindow(vector &A, int w, int k){
//use BST tree to record w elems in the windows.
//update BST, add new elem into BST, and delete old elem.
assert(A.size()>=w&&k<=w);
multiset >BST;
for(int i=0;i ... 阅读全帖

发帖数: 1
16
我试着用C写了一下。也是先判断升序降序,然后是分LESS THAN, LESS THAN EQUAL,
GREATER THAN, GREATER THAN EQUAL, EQUAL, 一共5中情况,然后每种情况的区别主
要是>,还是<以及第一个数组元素与SEARCH KEY所比较的特殊CORNER CASE。
CODE显得很繁琐。
哪位大牛能举个FUNCTOR的例子。
多谢。
//升序
case( LessThan ):
{
i = 0;
while ( ( items[ i ] < key ) )
i++;
if( ( i == num_elems ) || ( ( elem[ i ] >= key ) && ( i == 0 ) ) )
result= NotExist;
else
{
*index = i - 1;
result = FoundResult;
}
... 阅读全帖
a******y
发帖数: 34
17
来自主题: SanFrancisco版 - North valley 和 Evergreen 比较
我来加上API及初中信息:
Tom Matsumoto Elem.(982) -> Chaboya Middle (924) -> Evergreen Valley High (
839)
Carolyn Clark Elem.(943) -> Quimby Oaks Middle (852) -> Evergreen Valley
High (839)
我觉得初中还是需要900以上的,所以推荐属于 Tom Matsumoto Elem 的区域 (
Roughly South of Aborn, North of Yerba Buena, East of Ruby, to be sure,
check http://evergreen.ccsct.com/page.cfm?p=2455

Silver Creek High,可以比的,也不是North Valley的高中可以比的。
基本就搞定了。
a****q
发帖数: 1021
18
来自主题: SanFrancisco版 - Fremont地区:替女儿寻找playmate
94555不就三个小学吗
Public Schools
Name
Level
API (?)
District
Zip
Home Price (?)
Ardenwood Elementary
Elem. (K-6) 949 (94%) Fremont Unified 94555 Average: $627,
907
Median: $649,500
Forest Park Elementary
Elem. (K-6) 975 (98%) Fremont Unified 94555 Average: $580,
269
Median: $636,500
Warwick Elementary
Elem. (K-6) 891 (78%) Fremont Unified 94555 Average: $437,
188
Median: $434,974
S*******e
发帖数: 118
19
来自主题: SanFrancisco版 - 学校里面的中印学生比例
这个网站好。刚看了一下,总结如下。
Palo alto:
白人占一半左右,中国人普遍占10-20%,印度人比中国人少。
Cupertino一带:
Cupertino high和Monta Vista high都是一半一半,有些地方已经被印度人占领了,最
厉害的是Garden Gate Elem, 中印1:4。Lynbrook high还是中国人的地盘,中印2:1。
Sunnyvale:
Homestead很diversified: 中印白墨=280 : 163:624 : 317
小学里面也是白人最多,即使像中国人喜欢的区比如West Valley,Cherry chase,中
国人也就是20%,不过印度人更少。
Milpitas:
非常diversified,中国人不多,好点的学校一般在10-20%。但是其实每个种族都是这
个比例,包括白人、越南人、菲律宾人、印度人。
Fremont:
Warm springs elem: 中国人不到30%,印度人大概40%
MSJ elem: 中印大概都是40%,中国人略少。
c**f
发帖数: 85
20
There was a rezoning in 1995 in sunnyvale school district (move hollenbeck
elem to Vargas elem) and Cumberland elem benefitted a lot from that. That
94086 area used to be with cherry chase and Cumberland then.
s*****i
发帖数: 5548
21
☆─────────────────────────────────────☆
COSC (6408) 于 (Tue Mar 13 22:44:46 2012, 美东) 提到:
1.memorial区的exemplary的小学,中学,和高中都是哪几个?
2.哪几个community是zone到的exemplary 小学,中学,和高中的?
3.这个memoria高中和Clement high比较起来这么样?
谢谢。有包子答谢。
☆─────────────────────────────────────☆
happybird (家有乖宝小丹尼) 于 (Wed Mar 14 11:55:10 2012, 美东) 提到:
1.exemplary的小学有很多,你可以去har.com去查具体的,中学是memorial middle
school, 高中是memorial high school
2. 77024的community includes memorial最好的小学中学和高中, 77079(South of I-
10, East of Kirkwood and W... 阅读全帖
b***i
发帖数: 3043
22
来自主题: Java版 - jtextpane syntax highlight问题
我现在做了一个文本编辑器,用于BASIC语言等。
这个编辑器可以把关键字变蓝色并变粗体,字符串变粉红,没有右边引号的字符串变红
,注释变绿
很简单吧?
作了一个函数叫processtext(int start, int length),在keyreleased里调用。
经常死机,就是程序不继续执行了。
于是我用了一个semaphore light来控制process不能重入
@Override
public void keyReleased(KeyEvent e) {
if (changed){
int pos = getCaretPosition();
Element elem = Utilities.getParagraphElement((JTextComponent)e.getSource
(), pos);
int start = elem.getStartOffset();
int end = elem.getEndOffset();
try {
light.acquire();
process(sta
k**l
发帖数: 2966
23
I have a question of c++ programing habit,
I sometimes use list, map or other container to store user defined classes,
and use it later in member functions--say
std::list m_list;
When inserting a new element, I always have to fully create an element, then
call push_back or insert.
MyElement elem(1,2,"something"...);
m_list.push_back(elem);
And push_back would call copy constructor (I defined in MyElement class) to
duplicate the object.
After inserting, the elem itself is never used an... 阅读全帖
x******a
发帖数: 6336
24
来自主题: Programming版 - 请教C++11
在visual studio express 2012里为什么compile不过去?
#include
#include
#include
#include
int main()
{
std::vector vec{3, 4, 2, 9, 15, 267};
for(auto& elem:vec) elem*=3;
std::ostream_iterator out_it(std::cout, ", ");
std::copy(vec.begin(), vec.end(), out_it);
return 0;
}
Error 1 error C2601: 'vec' : local function definitions are illegal
c:users。。documentscodetest11test11main.cpp 8 1 test11
Error 2 error C2143: synt... 阅读全帖
p***o
发帖数: 1252
25
来自主题: Programming版 - 请教python
elem就是一指针,你要改变的是elem指向的那个object
而不是把elem指向一个新的object,就象这样:
>>> a=[[1]]
>>> b=a[0];b
[1]
>>> b.append(2);a
[[1, 2]]
>>> b=[1];a
[[1, 2]]
c********e
发帖数: 6
26
Hi,
A good friend just is running after school care in Northwood, Irvine. She
could pick up children from Northwood Elem, Brywood Elem, Santiago Elem and
Canyon View Elementery schools. She lives in Northwood and has opening for
new kids. Her house has a large living and study area, and she could help
homework and kids' piano practise. She is flexible to pick up kids from
school and can keep kids with her for late parents schedule.
She has limited opening now. Please pm me for contact and rate ... 阅读全帖
r**u
发帖数: 1567
27
来自主题: JobHunting版 - amazon question
2个指针,l, r,分别指window的左右边. 开始l = r = 0,
(1) move r,直到这个window has all elems of B. record min window
(2) move l, until A[l] is in B.
(2) move l,直到这个one elem of B is not in the window.
(3) go to 2, if cur win length < min window length, update min window.
需要2n steps.
stop when r == n - 1.
3,1,5,7,3,5,2
l r 3
l r
l r
l r 3
l r
l r
l r 2


co
conta
is
n******h
发帖数: 50
28
来自主题: JobHunting版 - amazon question
你这个有错误之处。我改一下啊。
2个指针,l, r,分别指window的左右边. 开始l = r = 0,
(1) keep increasing r,until window has all elems of B;
(2) while ( A[l] has duplicates in window || A[l] is not in B )
l++;
record this window as minwindow;
(3) do l++;
while ( A[l] has duplicates in window || A[l] is not in B );
(4) while ( window does not contain all elems of B )
r++;
(5) compare current window with minwindow and record the smaller one;
(6) if (r is not out of bound)
go to (3);
d****n
发帖数: 233
29
来自主题: JobHunting版 - amazon tel interview
1. Solution 1. Since we anyway need to create a array of size nxk. all the
merge can be done in this new array. suppose the new array is array k+1:
copy array (0) to array k+1
for (array [1, k-1])
{
merge(array[i], array[k+1]);
}
Solution 2, use the following struct:
struct {
int value;
int arrayk;
int subIndex;
} Elem;

PriorityQueue minPQ(k);

for(int i = 0; i < k; i++)
{
minPQ.enqueue(Elem(array[i][0], i, 0));
}
a*****g
发帖数: 110
30
来自主题: JobHunting版 - 面经&感想
从6月初开始准备找工作,找了近半年,期间毁onsite无数,最近终于有所收获,拿到
几个offer,虽然不是那几个著名大公司,不能和版上的牛人比,但也算和自己专业相
近,决定挑一个从了。穷人没什么包子,就说点感想发点面经,答谢本版。顺便求祝福
接下来的process能够顺利。今年h1b已经用完了,我是打算quit phd做full time的,
学校的CPT/OPT没过qualify之前还不让full time,庆幸公司允许我先做part time。希
望一切能够顺利。也bless其他找工作的同志们。
1. 找工作还是要花大量时间精力充分准备的,各种基本概念、data structure,
algorithms, programming language concepts,还有自己简历上写的各种project要把
每个细节都弄清楚。没准备好之前不要轻易投大公司浪费机会,免得追悔莫及。我就有
惨痛的教训。一下是我主要复习的材料。
career cup
programming interview expose
ihas1337code
thecareerplus
geeks for gee... 阅读全帖
q****x
发帖数: 7404
31
来自主题: JobHunting版 - aixiang面经疑云重重
4. Design a timing mechanism: when a packet is received, cancel the
timing;
otherwise, start timing until time out. Suppose each timing object has
different expiration period?
没看懂。
5. Given an integer, print out its square root
返回整数根?是最接近,还是小于且最接近?
6. An integer array of size m + 1 with m unique element, find the
duplicate
one
排序和散列两个方法,没更好的吧?
7. Given a function to read/write data from/to hard disk. Req(r/w, addr,
size, buffer), e.g.Read_write(read, 0, 5, …), Read_write(read, 5, 3, …).
This fun... 阅读全帖
j**w
发帖数: 382
32
来自主题: JobHunting版 - Re: 贡献个facebook电话interview
void swap(T *array, size_t i, size_t j)
{
if (i != j)
{
T temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}
size_t remove_elem(T* array, size_t len, T elem)
{
size_t i = 0;
size_t j = len-1;
while (( i < len ) && ( i < j ))
{
if (array[i].equals(elem))
{
swap(array, i, j);
j--;
}
else
{
i++;
}
}
return j+1;
}
H*****1
发帖数: 4815
33
来自主题: JobHunting版 - Re: 贡献个facebook电话interview
不用sort啊
就是一个指针在前,一个指针在后
前面指针遇到elem,就跟后一个指针换,后一个指针前移一位
前面指针如果不是elem,就后移一位,直到前面指针和后面指针相等
length就是后面指针-array
e********r
发帖数: 24
34
来自主题: JobHunting版 - 小弟求问LinkedIn那道Deep Iterator的题
这个可能犯规了……
import scala.collection.mutable.ArrayBuffer
def deepFlatten(list: Seq[Any]):ArrayBuffer[Int] = list match {
case Nil => ArrayBuffer()
case elem::rest => elem match {
case v: Int => v +=: deepFlatten(rest)
case l: Seq[Any] => deepFlatten(l) ++=: deepFlatten(rest)
}
}

class DeepIterator(list: Seq[Any]) {
val content = deepFlatten(list)
def hasNext = !content.isEmpty
def next = {
val item = content.head
content -= item
item
}
}
e********r
发帖数: 24
35
来自主题: JobHunting版 - 小弟求问LinkedIn那道Deep Iterator的题
这个可能犯规了……
import scala.collection.mutable.ArrayBuffer
def deepFlatten(list: Seq[Any]):ArrayBuffer[Int] = list match {
case Nil => ArrayBuffer()
case elem::rest => elem match {
case v: Int => v +=: deepFlatten(rest)
case l: Seq[Any] => deepFlatten(l) ++=: deepFlatten(rest)
}
}

class DeepIterator(list: Seq[Any]) {
val content = deepFlatten(list)
def hasNext = !content.isEmpty
def next = {
val item = content.head
content -= item
item
}
}
m*****n
发帖数: 2152
36
来自主题: JobHunting版 - Citadel面经+分享奇葩经历
显然用dp最快(2*N^2),递归的话是O(2^N);
int main()
{
vector > table{
{4,6},{6,8},{7,9},{4,8},{0,3,9},
{},{0,1,7},{2,6},{1,3},{2,4}
};
vector count(10, 0);
count[1] = 1;
for(int ipos=1; ipos<11; ipos++)
{
vector temp(10, 0);
for(int idigit=0; idigit<10; idigit++)
{
for_each(table[idigit].begin(), table[idigit].end(),
[&](int elem){temp[idigit]+=count[elem];});
}
count = temp;
}
cout << "total count = " << count[9... 阅读全帖
b*******w
发帖数: 56
37
来自主题: JobHunting版 - g面经来一个。
type 'a elem = Single of 'a | Multi of ('a elem list);;
let rec flatten l =
match l with
| [] -> []
| hd :: tl -> match hd with
| Single x -> x :: flatten tl
| Multi x -> (flatten x) @ flatten tl;;
t******r
发帖数: 28
38
买了以下两件东西, 一条14k金的项链$125+一对14k金的耳环$75,
加起来一共正好200刀,把voucher用掉了.
Sand Dollar Pendant in 14k Yellow Gold
$125
http://www.bluenile.com/gold-jewelry/gold-necklaces?elem=image&
Mini Hoop Earrings in 14k Yellow Gold (7/16") $75
http://www.bluenile.com/gold-jewelry/gold-earrings?elem=image&t
t******r
发帖数: 28
39
买了以下两件东西, 一条14k金的项链$125+一对14k金的耳环$75,
加起来一共正好200刀,把voucher用掉了.
Sand Dollar Pendant in 14k Yellow Gold
$125
http://www.bluenile.com/gold-jewelry/gold-necklaces?elem=image&
Mini Hoop Earrings in 14k Yellow Gold (7/16") $75
http://www.bluenile.com/gold-jewelry/gold-earrings?elem=image&t
g******4
发帖数: 6339
40
来自主题: Chicago版 - Chicago Magnet schools
Top four elementary schools, top four middle schools in IL are Chicago
Magnet school:
http://www.suntimes.com/news/education/1251847,illinois-school-report-cards-main-103108.article
Elementary Schools in Illinois
Rank School City
1 Decatur Classical* Chicago
2 Keller Gifted* Chicago
3 Lenart Gifted* Chicago
4 Edison Gifted* Chicago
5 King Gifted* Rockford
6 Lincoln Elem River Forest
7 Iles Elem* Springfield
8 Grove Avenue Barrington
9 Brook Forest Oak Brook
10 Nor
g******4
发帖数: 6339
41
来自主题: Chicago版 - 芝加哥的老中们都住哪?
西郊 北郊 西北郊 or
in the city:
Coonley Elem School
Bell Elem School
http://voices.suntimes.com/news/2013-illinois-test-scores-top-5
如果你欣赏我的信息,敬请收看
https://www.youtube.com/watch?v=vsBf_0gDxSM
11,986,122
Almost 12 M
r*z
发帖数: 1679
42
来自主题: Georgia版 - 大家都在哪里买房啊?
"The best public schools in Buckhead are in VERY expensive areas. Warren T.
Jackson Elementary serves West Buckhead from the zip 30327 with a couple of
hundred homes from 30342 and 30305 as well. The school has the IB program at
the elementary level and IMHO is the second best public school in the state
, next to Kittredge. Statistically it is ranked in the top five. Zip 30327
has a medium home value of $964,000 and each year homes get more expensive
in the area. Note that if you look up homes i... 阅读全帖
A*f
发帖数: 3067
43
来自主题: SanFrancisco版 - 最近房价大涨?
elem 974
high 906
vs msj
elem 993
high 949
very "close" depends on how you define "close"
s**********e
发帖数: 97
44
来自主题: SanFrancisco版 - 求买房建议
现在买房都是20%downpay, 所以如果你要把存款都付down pay, 你可以买到70万。但那
样就太
撑了。所以60多万就可以了。
你说的学区不太差,是什么样的标准? 比如:
小学[900--950] 中学[850--900] 高中[800--850] (都是API score)
你可以用
http://www.schoolandhousing.com/home/
的overlap search 大致看看有哪些区域符合你的要求。
如果用上面的条件,在santa clara county, 你可以查到6个符合的区域.
然后在右边的information panel 上可以按城市或zip code 查一查 average house
price.(那个绿色的箭头button可以switch info panel)
比如对上面的6各区域中的(Noddin Elem 941, Union Middle 892, Leigh High 817)
,
你可以按Noddin Elem的zip code 95124 查average house price,是低于64万的。所
以,这可能是... 阅读全帖
S**********r
发帖数: 1410
45
看来还是evergreen比较靠谱, 基本没有overflow, 就算matsumoto elem overflow to
Evergreen elem,也就是981和927的区别
l******n
发帖数: 390
46
来自主题: SanFrancisco版 - 买Dublin在I-680西边还是东边的房
东边(超东):
Elem/933; Middle/910; High/868
西边(超西):
Elem/890; Middle/838; High/868
中小学东西边现在看有差距,但差距不是很大,从未来看来,东边应该变化不会太大,
因为东边基本都是Dublin Ranch一带居民的孩子,东边还在扩建,会不断有人搬入,但
人口背景构成不会有太大变化,以中印为主体的亚洲人民,即使有新学生加入,但学生
背景维持稳定,API不会有太大变化。
相反在西边,中小学会渐渐赶上,在西边的Wells Middle school的API 2010跟2009年
比增加了49分,是所有Dublin学校中增加最快的,我觉得跟西边人口结构变化有关系,
西边也在盖新房,规模比东边小多了,但西边房少,退休人员多,虽然新迁入的不多,
但对中小学在读人口结构影响比较大,也就是说在读人口结构开始慢慢与东边靠拢,随
着房价上涨,西部会慢慢把一些人挤出(中印人民挤入),10年后东西部学校差别不大
,但西边的新房会比东部新房跟值钱,第一是少,第二是view好lot大,第三是交通要
方便一点(西边基本已无空间在盖新房)。
欢迎不... 阅读全帖
i**p
发帖数: 940
47
94086, 94087情况比较复杂。东边的那快,不管是94086还是94087初中高中都不好。小
学水平差别不大,我觉得94086 Ponderosa elem(就是这些新房子附近)那快反倒好些,
至少交通好。
西边的学区相对东边都好些. 但94087更好. 94087有一小块最好,是west valley elem
/cupertino middle/homestead high. 94086有一小快是94086中最好的,是cumberland
ele/sunnyvale middle/homestead high.
1 2 3 4 5 6 7 下页 末页 (共7页)