base case

基本情况:递归定义或算法中不是以自身为定义的部分。

常用释义

词性释义

基本情况:递归定义或算法中不是以自身为定义的部分。
例句
  • 全部
A base case is the bottom point of a recursive program where the operation is so trivial as to be able to return an answer directly.
基线条件是递归程序的最底层位置,在此位置时没有必要再进行操作,可以直接返回一个结果。
Notably, he said the Fed's base-case forecast of strengthening growth next year was premised in part on markets continuing to heal.
值得注意的是,伯南克表示,美联储关于明年经济走强的基本预测,部分建立在市场持续愈合的前提之上。
The base case is the point where it ceases to call itself, and instead returns.
基线条件就是函数终止对自身的调用并返回的条件。
The only way to go about exploring the template is to define a recursive version of the same along with a base case.
探索模板的惟一方法是定义同样的递归版本以及基本案例。
Check to see whether the current value(s) being processed match the base case.
检查要处理的当前值是否已经与基线条件相匹配。
因此她的基本预测为,债权人可收回大约4亿美元,消极预测大约为2.5亿美元。
注意,与我们的递归程序非常类似,链表的定义也包括一个基线条件——在这里是NULL指针。
这将作为一种有用的基本用例,类似于经典访问者模式中的基本Visitor类。
The base case remains that growth will be strong enough for China to muddle through the various stresses afflicting its economy.
大趋势依然是增长将很强劲,足以使中国应付影响中国经济的各种压力。
Hence our base case outlook that bonds will generally perform in line with yield, with little prospect of meaningful capital movement.
所以,我们的基本看法是债券表现将基本与收益率一致,不太会出现实质性的波动。
The base case is still that the current soft patch is temporary.
基本理由就是现在经济不景气这一困难时期只是暂时的。
我们得出结论认为,相比我们的基准情形,中国各银行不良贷款的潜在规模可能更接近我们的压力情形。
We assume bondholders will only have access to 50 per cent of these assets in the base case and 30 per cent in the downside case ". "
我们认为,按照基本预测,债券持有人只能获得这些资产的50%,消极预测则只有30%。
各种解决方案到位时的系统性能与基本情况下的做了比较。
这份报告成为比较美国和苏联对损害效果预计差异的“基本案例”。
经纪人提出,尽管北京政府实施过于收紧的经济政策可能造成硬着陆的局面,尽管这并没有事实依据。
停止的位置称为基线条件(basecase)。
我们用基本事件数据来标准化这个模型,当我们把人口流动限制去掉之后,所有的工资和大部分的收入不平等消失了。
If the list is empty, then that's a base case (returning "false" ).
如果列表为空,则那也是基线条件(返回“false”)。
In a base case and assuming a three-percentage-point capital-ratio increase, the absolute level of GDP rises by some 1. 7%.
在基本情况下,假设资本比率增加3个百分点,GDP的绝对水平将提高1.7%左右。
If the current node has the string, that's a base case (returning "true" ).
如果当前节点拥有那个字符串,则那就是基线条件(返回“true”)。
为每个基本例给出一个自己的类。
The base case (what to do if the function's parameter is zero) is much easier.
基线条件(当函数参数为零时作何处理)十分简单。
每个在基本情况和新的设计方案,工厂的运作能力如表1。
First, there's what McKinsey calls the base case.
首先,是麦肯锡所谓的基本愿景。
但在日本,市场迄今的反应恰恰相反,好像彻头彻尾的灾难已是板上钉钉之事。
中国经济可能性最大的前景依然是软着陆。
In the base case, joists need spans of 30 to 50cm when install WPC (according to the size of products).
一般情况下,塑木型材安装时托梁要求30—50厘米的跨距(根据型材大小而定)。
This program won't always hit the first base case because it won't always have the string being searched for.
这个程序不是总能达到第一个基线条件,因为不是总会拥有正在搜索的字符串。
The base case is whenever S1 or S2 is a zero-length string.
(基线条件(basecase)是S1或S2为长度为零的字符串的情形。