由买买提看人间百态

topics

全部话题 - 话题: dest
首页 上页 1 2 3 4 5 6 7 8 9 下页 末页 (共9页)
d**e
发帖数: 6098
1
不知写个non-recursive的DFS会不会好点,减少system stack call.
要用一个stack,但因为我想打印出路径,所以觉得用一个deque来保存各个点比较好点。
void FindAllPath(G, source, dest)
deque d;
d.push_back(source);
//这里还要一个数据结构visit表示点是否访问过,跟DFS那里一样。
while(!d.empty())
u = d.back();
for(each v in u's neighbor)
if( v == dest)
print path (that is from d's front to end)
else if v has been visited
continue;
else
d.push_back(v);
end if
u = d.back();
end for
... 阅读全帖
l********y
发帖数: 1327
2
来自主题: JobHunting版 - a MS interview question about C++
how to copy a string without using strcpy function in only one clause? for
example
char * str1 = "welcome";//this is source to be copied
//want to copy str1 to dest using only one clause!
......char * dest ......//how to write this clause?
l********y
发帖数: 1327
3
来自主题: JobHunting版 - a MS interview question about C++
i think this is ok but how do you allocate memory for dest * ?
i know in some compiler it will work like mine, but still dest * is not
allocated any memory.
d*s
发帖数: 699
4
来自主题: JobHunting版 - 问一道之前版上M家面经的题
import mpi4py as MPI
size = MPI.COMM_WORLD.size; rank = MPI.COMM_WORLD.rank
datalist = [0 for ii in xrange(size)]
datalist[rank] = data;
stat = MPI.status()
non-block情况:
for id in xrange(size):
if id==rank: continue
MPI.Isend(data, dest=id)
ii=0
while ii if MPI.Iprobe(source=MPI.ANY_SOURCE, status=stat):
tmp = MPI.Irecv(source=stat.source)
datalist[stat.source] = tmp
ii+=1
block情况麻烦一些,只想出按顺序发送接收的笨办法:
for id in xrange(rank-1):
datalist[id] = MPI.Recv(tag=id)
for id in ... 阅读全帖
J****3
发帖数: 427
5
这个是都在新开辟的空间dest上操作 无论长短都返回dest吧

caller
m**p
发帖数: 189
6
没啥, 这题挺偏的。这年头,不是做系统的,问这干吗。呀是找抽。
I renamed some vars in the code for easy understanding:
int Read(char *dest, int MAX_SIZE){
static int offset = 0;
static char *buffer = new char[4];

int size = 0, copySize = 0;
int readSize = 4;
while( offset != 0 || size < MAX_SIZE || readSize == 4){
readSize = offset ? 4 - offset : Read4(buffer);
copySize = min( readSize, max_size - size );
memcpy( dest + size, buffer + offset, copySize );
size += saveSiz... 阅读全帖
s**x
发帖数: 7506
7
来自主题: JobHunting版 - LinkedIn 面经
http://stuff.mit.edu/afs/sipb/contrib/linux/arch/microblaze/lib
/*
* Copyright (C) 2008-2009 Michal Simek
* Copyright (C) 2008-2009 PetaLogix
* Copyright (C) 2007 John Williams
*
* Reasonably optimised generic C-code for memcpy on Microblaze
* This is generic C code to do efficient, alignment-aware memmove.
*
* It is based on demo code originally Copyright 2001 by Intel Corp, taken
from
* http://www.embedded.com/showArticle.jhtml?articleID=19205567
*
* Attempts were made, unsu... 阅读全帖
s******i
发帖数: 82
8
来自主题: NextGeneration版 - Toy deals
1) Mega Play N Go Table & Mega Bloks 100pc Maxi Tube Building Blocks Bundle,
$30
http://www.walmart.com/catalog/product.do?dest=9999999997&produ
2) Imaginarium Wooden Marble Run
List Price: $49.99
Our Price: $19.98
http://www.toysrus.com/product/index.jsp?productId=11776596&sku
3) PlayGo Baby's Play Table
Online
$15.00
Was: $34.97
http://www.walmart.com/ip/PlayGo-Baby-s-Play-Table/21095890?wml
4)Wooden Activity Table with 45-Piece Train Set & Storage Bin
Online
$45.00
Was: $79.97
http://... 阅读全帖
N****B
发帖数: 152
9
【 以下文字转载自 Automobile 讨论区 】
发信人: NMRPDB (NjMusic-RisingPianistDB), 信区: Automobile
标 题: 2014 CRV-LX AWD & EX-L 报价 OTD24285
发信站: BBS 未名空间站 (Mon Dec 30 15:35:20 2013, 美东)
2014 Honda CRV Lx Awd
$21295
830 Dest
1548.75 Tax
299 Doc
296 Dmv
7.50 Tire Tax
8.50 online reg
$24284.75 OTD
2014 Honda CRV Ex-l Awd
$25945
830 Dest
1874.25 Tax
299 Doc
296 Dmv
7.50 Tire Tax
8.50 online reg
$29260.25 Total


我拿到的怎么这么高?很羡慕版上大神们的报价,怎么砍?谢谢
N****B
发帖数: 152
10
【 以下文字转载自 Automobile 讨论区 】
发信人: NMRPDB (NjMusic-RisingPianistDB), 信区: Automobile
标 题: 2014 CRV-LX AWD & EX-L 报价 OTD24285
发信站: BBS 未名空间站 (Mon Dec 30 15:35:20 2013, 美东)
2014 Honda CRV Lx Awd
$21295
830 Dest
1548.75 Tax
299 Doc
296 Dmv
7.50 Tire Tax
8.50 online reg
$24284.75 OTD
2014 Honda CRV Ex-l Awd
$25945
830 Dest
1874.25 Tax
299 Doc
296 Dmv
7.50 Tire Tax
8.50 online reg
$29260.25 Total


我拿到的怎么这么高?很羡慕版上大神们的报价,怎么砍?谢谢
j******w
发帖数: 4429
11
来自主题: Database版 - ask for help
select * from table_name a where
not exist (select * from table_name b where type in (1,2) and
a.origin=b.origin and a.dest = b.dest and a.date=b.date)
G**T
发帖数: 388
12
来自主题: DotNet版 - how to use old DLL in VB .NET?
I have a dll which works in VB6. Now I need use it in VB .NET, what I should
do?
The old DLL is:
Private Declare Function TestData Lib "Test.dll" Alias "TESTDATA" (ByVal
Source As String, ByVal Dest As String) As Long
Now I want to use it in Vb .NET. I checked MSDN and tried this:
_
Public Shared Function TestData(ByVal Source As String, _
ByVal Dest As String) As Long
End Function
......
Dim ret As Long
ret = TestData(strSource, strDest)
the TestD
t*********e
发帖数: 1136
13
来自主题: EmergingNetworking版 - 谁能给解释一下loopback address么?
It's the Cisco thing. I think it is some logical interface with an IP/mask to indicate a network. Each physical port can be associated with a SVI. Basically it is a way to tell control plane kernel that if dest MAC matches the assigned ports, and dest IP matches the SVI, dispatch the packet to control plane daemons, based on port numbers, that are listening on the IP address.
c*****i
发帖数: 631
14
来自主题: EmergingNetworking版 - 谁能给解释一下loopback address么?
switch virtual interface. cisco switch在不同vlan间switch packet用的。比如你
有2个vlan,vlan里面的pc的default gateway就设为switch对应那个vlan的svi
address,这样vlan里面的pc就可以send packet出去了.

to indicate a network. Each physical port can be associated with a SVI.
Basically it is a way to tell control plane kernel that if dest MAC matches
the assigned ports, and dest IP matches the SVI, dispatch the packet to
control plane daemons, based on port numbers, that are listening on the IP
address.
f*******8
发帖数: 3612
15
来自主题: EmergingNetworking版 - 看看我新order的ccna书。
我也回答一下,
pc1 ping pc2 能通,因为pc1一看dest ip在自己的网段里,
没什么犹豫就开始试验,
1. 发ARP,(ARP 的dest MAC is ffffff)
2. pc2 回答arp 告知pc1自己的 mac
3. pc1 send out ping icmp.
4. pc2 应答 ping。
PC2应答的时候是不需要判断对方ip的网段的,因为他不知道对方是router或pc.
这样就完成了pc1 ping pc2。
但是当要求pc2 ping pc1时, pc2一看pc1不在自己的网段,
如果没有default gateway 它直接就放弃了。
如果有default gateway, 它会发给gw,
但是gw不会再把这个请求发回来同一个网段。
而且他不会发(broadcast) arp去请求pc1的 MAC. 因为不在一个网段。
所以pc2不会知道pc1的MAC.
对不对?
j****g
发帖数: 597
16
来自主题: Programming版 - 谁给详细说一下这句
我以为只能转换函数的返回类型呢。
怎么实现转换参数类型的呢?能详细说一下后台怎么处理的么?
这个问题来源于C++ template, writen by Davice Vandervoorde. Section 4.2
Nontype Function Template Parameters. It provides a function
std::transform(source.begin(), source.end(), dest.begin(), addValue)
It says that compiler may have problem doing parameter deduction in this
form, and gives another form:
std::transform(source.begin(), source.end(), dest.begin(),
(int(*)(int const*))addValue)
I'm totally lost about what he's talking about.

int
l********y
发帖数: 1327
17
来自主题: Programming版 - 3 c++ challenge-and-grill questions
1. how to copy a string without using strcpy function in only one clause?
for
example
char * str1 = "welcome";//this is source to be copied
//want to copy str1 to dest using only one clause!
......char * dest ......//how to write this clause?
2. c++ class default functions?
i think there are 4, cons, destructor,copy cons, assignment operator.
but someone says there are more, like & , someone is a guy senior tech title
from IB. is this true? really confused.
3. how to dynamically allocate memory ... 阅读全帖
w*s
发帖数: 7227
18
sorry was cooking food, taking care of kids ...
thank you so much !
/*Define dependencies.*/
var express = require('express');
var multer = require('multer');
var app=express();
var done=false;
var exec = require('child_process').exec;
var cmd = 'echo ';
/*Configure the multer.*/
//var istarUpload = app.use(multer({ dest: './uploads/'}).single('myUpload')
);
var istarUpload = app.use(multer({ dest: './uploads/',
rename: function (fieldname, filename) {
return filename+Date.now();
... 阅读全帖
t********e
发帖数: 1169
19
【 以下文字转载自 JobHunting 讨论区 】
发信人: mitbbs59 (bEQi), 信区: JobHunting
标 题: 本版1年以内的所有 面经题目,含帖子link [为大家方便]
发信站: BBS 未名空间站 (Fri Jan 29 14:20:44 2010, 美东)
不敢保证全部涵盖,大部分的都在。
我自己找了一遍,大家一起用着都方便。
不过只是含有题目的帖子 我才包含进来了,只分享经验没贴题目的 我都没有包含
进来。
大家复习着方便。
1. 一个sorted interger Array[1...N], 已知范围 1...N+1. 已知一个数字missing。
找该数字。
把原题改为unsorted,找missing数字。 performance。
2. 复制linked list。 已知每个节点有两个pointer,一个指向后一个节点,另一个指向
其他任意一节点。 O(n)时间内,无附加内存,复制该linked list。(存储不连续)
3. 一个party N个人,如果一个人不认识任何其他人,又被任何其他人认识,此人为
celeb... 阅读全帖
t********e
发帖数: 1169
20
【 以下文字转载自 JobHunting 讨论区 】
发信人: mitbbs59 (bEQi), 信区: JobHunting
标 题: 本版1年以内的所有 面经题目,含帖子link [为大家方便]
发信站: BBS 未名空间站 (Fri Jan 29 14:20:44 2010, 美东)
不敢保证全部涵盖,大部分的都在。
我自己找了一遍,大家一起用着都方便。
不过只是含有题目的帖子 我才包含进来了,只分享经验没贴题目的 我都没有包含
进来。
大家复习着方便。
1. 一个sorted interger Array[1...N], 已知范围 1...N+1. 已知一个数字missing。
找该数字。
把原题改为unsorted,找missing数字。 performance。
2. 复制linked list。 已知每个节点有两个pointer,一个指向后一个节点,另一个指向
其他任意一节点。 O(n)时间内,无附加内存,复制该linked list。(存储不连续)
3. 一个party N个人,如果一个人不认识任何其他人,又被任何其他人认识,此人为
celeb... 阅读全帖
w**t
发帖数: 1068
21
来自主题: Computation版 - MPI_send 使用求助
程序用fortran写的。我想把t传给其他cpu,下面的程序哪里错了?我实现不了传递。
谢谢大侠帮助!
real(8) t
main_pc=0
if (rank .eq. main_pc) then
do dest=1, size-1
call MPI_SEND(t, 1, MPI_REAL, dest, 0, MPI_COMM_WORLD, err)
enddo
else
call MPI_RECV(t, 1, MPI_REAL, 0, 0, MPI_COMM_WORLD, status, err)
endif
S******9
发帖数: 355
22
来自主题: Environmental版 - 请推荐个发会议论文
Dear Authors,
You are invited to upload your papers in the following two conferences
ensuring the indexing of the Proceedings, Post-Conference Books and Journals
in: ISI, SCOPUS, Elsevier, EI Compendex, IET (INSPEC), AMS, ACM, ASM,
Citeseer, Ulrich, Zentrablatt, British Library, DPP, SWETS, ScholarGoogle,
IEEE.AM etc...etc... conferences of October 27-29, 2011 until August 28,
2011
1) IAASAT Conference : ENVIRONMENT, ECONOMICS, ENERGY, DEVICES, SYSTEMS,
COMMUNICATIONS, COMPUTERS, MATHEMATICS
2) ... 阅读全帖
w*******y
发帖数: 60932
23
Walmart:
http://www.walmart.com/catalog/product.do?dest=9999999997&product_id=11089453&sourceid=37069539481160352822#ProductDetail
#ProductDetail" rel="nofollow" target="_blank">Walmart [Walmart:
http://www.walmart.com/catalog/product.do?dest=9999999997&product_id=11089453&sourceid=37069539481160352822#ProductDetail
#ProductDetail" rel="nofollow" target="_blank">walmart.com]
Free shipping
Holds LCD/plasma TVs up to 32''; most CRT TVs up to 20''
Plenty of shelving for components and collectibles
w*******y
发帖数: 60932
24
来自主题: _DealGroup版 - 【$】Sterile Eye Drops $0.97 F/S
Walmart has the Equate Redness Reliever Sterile Eye Drops, .5 fl oz for $0.
97 with free shipping.
Link:
http://www.walmart.com/catalog/product.do?dest=9999999997&produ
#rr" rel="nofollow" target="_blank" onclick="_gaq.push(['_trackEvent', '
thread', 'click', '3358360 - sterile-eye-drops-0.97-fs']);">Link [Link:
http://www.walmart.com/catalog/product.do?dest=9999999997&produ
#rr" rel="nofollow" target="_blank" onclick="_gaq.push(['_trackEvent', '
thread', 'click', '3358360 - sterile-eye-drops-0.... 阅读全帖
w*******y
发帖数: 60932
25
Linky:
http://www.walmart.com/ip/Eureka-79D/16927279?dest=9999999997&s
#BVSecondaryCustomerRatings" rel="nofollow" target="_blank" onclick="_gaq.
push(['_trackEvent', 'thread', 'click', '3696694 - eureka-quick-up-cordless-
hand-vac-79d-for-10-walmart-free-shipping-to-store']);">Linky [Linky:
http://www.walmart.com/ip/Eureka-79D/16927279?dest=9999999997&s
#BVSecondaryCustomerRatings" rel="nofollow" target="_blank" onclick="_gaq.
push(['_trackEvent', 'thread', 'click', '3696694 - eureka-quick-up-c... 阅读全帖
a*****e
发帖数: 2194
s********n
发帖数: 26222
27
Never believes the theory of G2 (PRC,US) it was a hoax
Risky geopolitical game: Washington plays ‘Tibet Roulette’ with China
By F. William Engdahl
Online Journal Guest Writer
Apr 14, 2008, 00:20
Email this article
Printer friendly page
Washington has obviously decided on an ultra-high risk geopolitical game
with Beijing’s by fanning the flames of violence in Tibet just at this
sensitive time in their relations and on the run-up to the Beijing Olympics.
It’s part of an escalating strategy of dest
l*w
发帖数: 3758
28
纽约时报的报道算不算啊。
http://www.nytimes.com/2006/04/25/world/europe/25marx.html
Marx's House Is the Mecca of the Chinese Tourist Class
TRIER, Germany, April 21 — Karl Marx's birthplace is a stately three-story
house that has been a fixture of this ancient town on the Mosel River since
it was built in 1727. What is changing are the large groups that visit almos
t every day from China, one of the few countries in the world still under th
e control of something calling itself a Communist Party.
Chinese tou... 阅读全帖
d*********2
发帖数: 48111
29
来自主题: Military版 - 他老爹每月基本工资三万多
中文的前台和front dest意义差很大。
前台大多时候指的是receptionist
M*****8
发帖数: 17722
30
2013年7月9日最新的1688个看跌的股票。
多数到顶。墙街已深入插管,吸血在即。
排列依次为,号码,股票符号,收市价。
#0001, A , 44.6000
#0002, AA , 7.9010
#0003, AAGIY , 17.1600
#0004, AAMRQ , 4.7300
#0005, AAN , 28.9700
#0006, AAON , 24.7400
#0007, AAP , 83.2000
#0008, AAUKY , 9.5300
#0009, ABAX , 50.2800
#0010, ABCP , 1.0000
#0011, ABT , 34.7400
#0012, ACAT , 51.5000
#0013, ACE , 92.3800
#0014, ACGL , 52.3700
#0015, ACH , ... 阅读全帖
M*****8
发帖数: 17722
31
2013年7月9日最新的1688个看跌的股票。
多数到顶。墙街已深入插管,吸血在即。
排列依次为,号码,股票符号,收市价。
#0001, A , 44.6000
#0002, AA , 7.9010
#0003, AAGIY , 17.1600
#0004, AAMRQ , 4.7300
#0005, AAN , 28.9700
#0006, AAON , 24.7400
#0007, AAP , 83.2000
#0008, AAUKY , 9.5300
#0009, ABAX , 50.2800
#0010, ABCP , 1.0000
#0011, ABT , 34.7400
#0012, ACAT , 51.5000
#0013, ACE , 92.3800
#0014, ACGL , 52.3700
#0015, ACH , ... 阅读全帖
f********4
发帖数: 2883
32
美国印度裔向FCC投诉某电台种族歧视的律师信
2005年,美国印度人向FCC投诉Philadelphia radio station,说他们种族歧视,嘲弄印
度人。比起ABC来这实在算不了什么。
http://intellibriefs.blogspot.ca/2005/01/complaint-to-fcc-again
The following is a complaint filed today before the FCC by Attorney Rahul
Manchanda, of Manchanda Law Offices, P.C. in New York on the
"Indecent, Racist, and Profane Radio Transmissions from Philadelphia radio
station, WUSL-FM (Power 99), owned by Clear Channel Communications".
Attorney Manchanda has taken this action at no cost to the ... 阅读全帖
k******a
发帖数: 816
33
出点事情怎么办。。。
Fukushima Cleaned Up by Poor and Unskilled
The ravaged nuclear plant’s operator has left the complex cleanup to a
poorly trained, mistake-prone work force.
http://www.nytimes.com/2014/03/17/world/asia/unskilled-and-dest
r******l
发帖数: 121
34
来自主题: Automobile版 - 教你如何砍价(新车)
Source(s): carbuyingtips.com
What I am telling you is based on 7 years in the business and personal
purchases.
------------------------------...
MSRP = Sticker(includes Dest. Charge)
Invoice = Can be found on Edmunds.com(include options) or kbb.com
Rebates = Vary by local dealership
Holdback (dealer's profit) = see below portion to calculate holdback
Estimate True invoice = Invoice - Rebates - Holdback
tax = ?% x True Invoice
Tags = whatever your states charges (typically $100 - $400)
Low ball o... 阅读全帖
P*****n
发帖数: 55
35
来自主题: Automobile版 - Corolla 17150, 大家觉得如何?
看到一个公式
http://tttan.com/HT/boards/Automobile/1221625007.html
MSRP = Sticker(includes Dest. Charge)
Invoice = Can be found on Edmunds.com(include options) or kbb.com
Rebates = Vary by local dealership
Holdback (dealer's profit) = see below portion to calculate holdback
Estimate True invoice = Invoice - Rebates - Holdback
tax = ?% x True Invoice
Tags = whatever your states charges (typically $100 - $400)
Low ball offer = True Invoice + tax + tags - $2,000
Target Price = [ (MSRP - Rebate - Low ball
z*******3
发帖数: 63
36
来自主题: Automobile版 - 好心人帮忙看看这个价格如何。
Ford Fusion i-4 S, auto transmission.
DIP: $19695
MSRP=DIP+875(for auto trans)+55(Floor mats)+725(Dest&Delivery)=$21350.
Dealer肯给DIP 18850,本州税6%。
我打算OTD Price $18600=17350(DIP)+6%(Tax)+200(TTL and etc.)
第一次买车,不知道我给的这个价格如何。Edmunds上说有$1000(cash back)+$500(
college
bonus)。那么我是不是要再减掉$1500,最后直接问17350卖不卖?
头次买车,战战兢兢啊。
多谢多谢。
a*******e
发帖数: 181
37
来自主题: Automobile版 - 2010 Enclave CX, $35500, deal?

cxl-1 MSRP(with Dest.) 大概39。5k, 不能说这个33k不可能,但确实是我见过最好
的deal.
而且“back up camera”和皮椅是cxl的standard。
s*******h
发帖数: 215
38
来自主题: Automobile版 - 问个买2011 Sienna LE问题
sorry, I saw you are in NJ and 7% rate.
Is this his initial price, or the final price after tough negotiation? What
are other fees in addition to dest charge and tax?
f*****r
发帖数: 70
39
不要买10款,10款ody马上退市了。
要比较就比较11款的odyssey和sienna;
俺有09的ody lx,试驾过11款的sienna,
你要是喜欢abuse车的话,买sienna的;
简单说吧,sienna拖车能力强(不是engine,是transmission比较heavy duty;honda的
tranny差点,也是大部分ody owner的心病);11款的suspension很硬,比ody还硬;
toyota的timing chain, honda还在用落后的timing belt,5-6年后还要换;
ody的优点就是内饰好,做工细腻,很多小东西做的贴心。
ody纵向空间好,sienna则更宽。
sienna le base是有合金轮的,别被dealer骗了,
我上次打听的包含dest的价格是11宽 le base,6cyc $25800,4cyc的$25K + TTL
11的ody要下个月才大面积铺货。
k********r
发帖数: 579
40
来自主题: Automobile版 - 帮忙看看这个报价怎么样 MDX w/Tech
2010 MDX w/Tech
sell price: $41853
dest. charge: $810
doc fee: $154.38
Is this a good deal? Any comments would be appreciated.
c***m
发帖数: 302
41
来自主题: Automobile版 - 准备出手MDX 了.
今天拿到地雷的报价,2010 MDX w/tech

41588+860 dest+ 3141 tax(太羡慕低税的州了)+399 mv+298 dov +7 tire tx
total 46,239 out the door with 1.9% 的APR for 60 months
就发了EMAIL 就给这个价 ,我感觉还可以坎点下来
好象2011的出来了,好象没有什么大的改动,只是贵了300刀. 不知道这个价格这么样哦,
大家说说看
s**l
发帖数: 869
42
来自主题: Automobile版 - 请教2011 nissan altima 报价
按照fatwallet上的计算方法算出来的一些参考数字:
MSRP= Sticker(includes Dest. Charge) $19900
Invoice= Can be found on Edmunds.com(include options) $ 19078
Rebates= Can be found on Edmunds.com $1250
Holdback= Can be found on Edmunds.com 2%*19078=%381
Est Tru invoice= Invoice - Rebates - Holdback = $17447
sales tax + tags= ?% x True Invoice = $1389 (TN)
Low ball offer= True Invoice + tax/tags - $2,000 = 17447 + 1389 -2000=16836
Target Price= (MSRP - rebate or Sale price - Low ball offer) / 2 + low ball
offer= 17743
... 阅读全帖
l**********t
发帖数: 5754
43
picked up the Odyssey EX-L last weekend @ $34650 OTD ($31K + NYC TTL for new
plates) w/o much haggling. The price could be a couple of hundreds lower
had a competing offer arrived a bit earlier (or if transfer plate/haggling
more). Some dealers are eager to move their inventories so I'm sure the
price will keep falling as 2011 approaches.
Before TTL, the price shall be lower than the truecar.com's dealer cost(
which includes regional dest, ad fee and dealer holdback).
The dealers that offer very... 阅读全帖
p*****h
发帖数: 48
44
来自主题: Automobile版 - 计算和dealer谈判的底价
我买车的时候也碰到了到底什么价格可以跟dealer去讨论的难题.后来在网上找到了一
个公式,可以大概计算出可以去跟dealer negotiate 最低价.
大家注意,不是你最终买车的价格,一般都会比这个target price 高
1) MSRP= Sticker(includes Dest. Charge)
2) Invoice= Can be found on Edmunds.com(include options)
3) Rebates= Can be found on Edmunds.com
4) Holdback= Can be found on Edmunds.com
5) Est Tru invoice= Invoice - Rebates - Holdback
6) tax= ?% x True Invoice
7) Tags= whatever your states charges
8) Low ball offer= True Invoice + tax + tags - $2,000
9) Target Price= (MSRP - rebate - Low ... 阅读全帖
p*****h
发帖数: 48
45
来自主题: Automobile版 - 计算和dealer谈判的底价
Sorry for confusing.
1) MSRP= Sticker(includes Dest. Charge)
2) Invoice= Can be found on Edmunds.com(include options)
3) Rebates= Can be found on Edmunds.com
4) Holdback= Can be found on Edmunds.com
5) Est Tru invoice= Invoice - Rebates - Holdback
6) tax= ?% x True Invoice
7) Tags= whatever your states charges
8) Low ball offer= True Invoice + tax/tags - $2,000
9) Target Price= MSRP - rebate or Sale price - Low ball offer / 2 + low ball
offer
I think the "rebate or Sale price " is 3)
n****e
发帖数: 6292
46
来自主题: Automobile版 - 计算和dealer谈判的底价
举个例子好吧?我查了下某车,msrp(incl. dest. fee) 19764, 1000 rebate, true
invoice 19004, tax+tag算1500吧,low ball offer就是18504,那么
msrp - rebate - low ball offer/2 + low ball offer = 19764-1000-18504/2+18504
= 28016
用这个价做底价,dealer还不得乐死

ball
n******a
发帖数: 114
47
来自主题: Automobile版 - 有没有最近买了Subaru Outback的?
另外,目前鳌拜标准版大概是22766(invoice)+ 725(dest. charge)。楼主自己掂量
吧。
t*****n
发帖数: 703
48
来自主题: Automobile版 - 2012 Honda Odyssey EXL 团购 ( MD , DE, NJ )
the lowest offer for 2012 is 31345 + 810 from MD. ( not the color I like)
the lowest offer from DE is 32998 ( including 801$ dest charge ).
We are in DE.
our choice is cherry color. Do not consider NAV or RES since GPS is quite
cheap and portable DVD is quite cheap.
t*****n
发帖数: 703
49
来自主题: Automobile版 - 2012 Honda Odyssey EXL 团购 ( MD , DE, NJ )
the lowest offer for 2012 is 31345 + 810 from MD. ( not the color I like)
the lowest offer from DE is 32998 ( including 801$ dest charge ).
We are in DE.
our choice is cherry color. Do not consider NAV or RES since GPS is quite
cheap and portable DVD is quite cheap.
d****n
发帖数: 12461
50
来自主题: Automobile版 - 新bmw3系真贵
什么都不配是34900+dest,你看错了。
首页 上页 1 2 3 4 5 6 7 8 9 下页 末页 (共9页)