- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
给定一个代数项的输入,我试图获得变量的系数。输入中唯一的运算符是 + -
并且只有一个变量。
例子:
2x^2+3x+4 => [ 2, 3, 4 ]
3-x => [ -1, 3 ]
x^2+x => [ 1, 1, 0 ]
x+x^3 => [ 1, 0, 1, 0 ]
无效输入:
2x^2+2x^2
这是我第一次尝试:
var str = " 2x^4-1+9x^3-100x^2";
function getCoeff(term) {
var nterm = (term.replace(/[^0-9|-]x(?!\^)/g,"1x")).replace(/[^0-9|\+]x(?!\^)/g,"-1x"); // ==> Replace ‘-/x’ with ‘-/1x’
for ( var i = 0; i < 10; i++ ) { // ==> Loop true the regexs to replace all ‘x^n’ to ‘1x^n’
var re = new RegExp('[^0-9|\-]x\\^' + i); // ==> Regex for x^n
var re2 = new RegExp('[^0-9|]x\\^' + i); // ==> Regex for -x^n
nterm = (nterm.replace(re,"1x^" + i)).replace(re2,"-1x^" + i); }
for ( var m = 10; m > 1; m-- ) { // ==> Get the coefficients of ax^n in descending order
var re3 = new RegExp('\\W?\\d+(?=x\\^' + m + ')' );
if ( nterm.match(re3) === null ) {
var result = "";
} else {
result += ((nterm.match(re3)+', ').toString()).replace(/\+/g,""); }}
if ( nterm.match(/\W?\d+(?=x(?!\^))/g) === null ) { // Regex for coefficient x
var result2 = "";
} else {
result2 = ((nterm.match(/\W?\d+(?=x(?!\^))/g)).toString()).replace(/\+/g,"") + ','; }
if ( nterm.match(/[^\^]\d+(?!\d|x)/g) === null ) { // Regex for constant
var result3 = "";
} else {
result3 = ((nterm.match(/[^\^]\d+(?!\d|x)/g)).toString()).replace(/\+/g,""); }
console.log(('[' + ' ' + result + result2 + ' ' + result3 + ']' ).replace(/\s/g,"")); }
getCoeff(str)
问题:
x 项
时不起作用。 例如:x^4 + x + 1 ==> 预期:[1, 0, 0, 1, 1] ==> 实际:[ 1, 1 ]
x
应该返回 [ 1,0 ]
,但它返回 [ 1, ]
这是我第二次尝试。
var str = "-999x^2+x^3+x+3";
function getCoeff(string) {
if ( string.charAt(0) === 'x' ) { // If the first term is x, because of my regex it needs a space to match it
string = ' ' + string;
}
for ( var i = 0; i < 10; i++ ) { // ==> Loop true the regexs to replace all ‘x^n’ to ‘1x^n’
var re = new RegExp('[^0-9|\-]x\\^' + i);
var re2 = new RegExp('[^0-9|]x\\^' + i);
string = (string.replace(re,"+1x^" + i)).replace(re2," -1x^" + i); }
var final = string.replace(/-/g,'+-'); // ==> Spilt(‘x’) later so to retain the -ve sign
final = (final.replace(/[^0-9|-]x(?!\^)/g,"+1x")).replace(/[^0-9|+]x(?!\^)/g,"-1x"); // ==> Replace ‘-/x’ with ‘-/1x’
final = final.replace(/[^\^](\d+(?!\d|x))/g,'+$1x^0'); // ==> Replace ‘c’ with ‘cx^0’
final = final.replace(/x(?!\^)/g, "x^1"); // ==> Replace ‘x’ with ‘x^1’
final = final.split('+'); // ==> Right now array looks something like this [ ax^(n), bx^(n-1), … yx^1, zx^0]
final = final.filter(function(entry) { return entry.trim() !== ''; }); // Sorts array by the number behind in descending order
var reS = /^-?\d+/,
reE = /\d+$/;
var result = final.sort(function(a, b) {
a = reE.exec(a);
b = reE.exec(b);
return b - a;
}).reduce(function(res, str, i) {
var gap = reE.exec(final[i - 1]) - reE.exec(str);
if(gap > 0)
while(--gap) res.push(0);
res.push(+reS.exec(str));
return res;
}, []); // Return the coefficients
console.log("Result:", result);
}
getCoeff(str);
问题:
有没有一种主要不使用正则表达式的方法?
我该如何解决这个问题?当没有常数项时
getCoeff(“x^3”) ==> [ 1 ] ,什么时候应该给出 [ 1, 0, 0 ]
如何让我的代码更有效率?
如何使用正则表达式匹配 x^n
项而不匹配 -x^n
项?这是我当前的:[^0-9|\-]x\\^' + i
,但它前面需要一个空格。
引用:
最佳答案
function getCoef(str) {
str = str.replace(/\s+/g, ""); // remove spaces (optional)
var parts = str.match(/[+\-]?[^+\-]+/g); // get the parts: see explanation bellow
// accumulate the results
return parts.reduce(function(res, part) { // for each part in parts
var coef = parseFloat(part) || +(part[0] + "1") || 1;// the coeficient is the number at the begining of each part (34x => 34), if there is no number it is assumed to be +/-1 depending on the sign (+x^2 => +1)
var x = part.indexOf('x'); // the index of "x" in this part (could be -1 if there isn't)
// calculating the power of this part
var power = x === -1 ? // if the index of "x" is -1 (there is no "x")
0: // then the power is 0 (Ex: -2)
part[x + 1] === "^" ? // otherwise (if there is an "x"), then check if the char right after "x" is "^", if so...
+part.slice(x + 2) : // then the power is the number right after it (Ex: 55x^30)
1; // otherwise it's 1 (Ex: 55x)
res[power] = (res[power] || 0) + coef; // if we have already encountered this power then add this coeficient to that, if not then just store it
return res;
}, {});
}
/** TESTS **/
[
"-999x^2 + x^3 + x + 3", "5x + 3 - 10x", "55x^3 + 1", "55.12x^4 + 20x^4 - 120x^4"
].forEach(function(test) {
console.log(test, "=>", getCoef(test));
});
输出:
getCoef
函数的结果将是以下格式的对象:
{
"power": "coeficient",
"other power": "other coeficient",
...
}
解释:
str = str.replace(/\s+/g, "");
:删除空格(显而易见)。
var parts = str.match(/[+\-]?[^+\-]+/g);
:将字符串拆分成多个部分。字符串 "-5x^2-3+10x"
将返回 ["-5x^2", "-3", "+10x"]
。正则表达式将查找:
[+\-]? : a "+" or "-" sign (if any)
[^+\-]+ : anything that isn't a "+" nor "-" (get everything up until the new + or - or the end is reached)
g : to get all parts
var coef = parseFloat(部分) || +(部分[0] + "1") || 1;
:使用以下方法获取这部分的系数:
parseFloat : for parts that have a number before "x" like: "+55x", "-34.22x^11", "5x", ...
+(part[0] + 1) : for parts that have only a sign like: "+x", "-x^2", ... (get the sign part[0] concatinate it with "1" and then cast the result into a number using binary +)
1 : for parts that doesn't have a number nor a sign like "x^3", "x", ...
请注意,像 "0x^4"
这样的部分将被假定为使用上面的系数为 1(但我不明白为什么无论如何都需要一个空系数)!
var x = part.indexOf('x');
:获取字符"x"
在部分中的索引,以区分有它的部分,如"3x"
、"x^11"
, ... 和不喜欢 "+5"
, ...
var power = ...
:如果部分 (x === -1
) 中没有 "x"
,则该部分的幂为 0
.
否则("x"
存在),然后我们检查 "x"
之后的字符是否(部分[x + 1]
) 是 "^"
,如果是,则幂是它后面的任何数字(切掉字符串的那个位 part.slice(x + 2)
并使用一元 +
将其转换为数字),如果 "x"
后没有 "^"
,则幂为 1
。
res[power] = (res[power] || 0) + coef;
:将刚刚计算出的系数coef
加到这个幂已经累积的系数上(如果没有累积则使用0
)。
这一行可以这样简化:
if(res[power]) // if we already encountered this power in other parts before
res[power] += coef; // then add this coeficient to the sum of those previous coeficients
else // otherwise
res[power] = coef; // start a new sum initialized with this coeficient
这使得在同一字符串中多次包含相同的幂成为可能,例如:"5x + 10x + 1 + x"
, ...
将结果对象转换为所需的数组:
这样:
{
"3": 7,
"0": 19
}
将是:
[7, 0, 0, 19]
var ret = { "3": 7, "0": 19 }; // the returned object
var powers = Object.keys(ret); // get all the powers (in this case [3, 0])
var max = Math.max.apply(null, powers); // get the max power from powers array (in this case 3)
var result = [];
for(var i = max; i >= 0; i--) // from the max power to 0
result.push(ret[i] || 0); // if that power has a coeficient then push it, otherwise push 0
console.log(result);
关于javascript - 获取代数项的系数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43444749/
我有一个 html 格式的表单: 我需要得到 JavaScript在value input 字段执行,但只能通过表单的 submit .原因是页面是一个模板所以我不控制它(不能有
我管理的论坛是托管软件,因此我无法访问源代码,我只能向页面添加 JavaScript 来实现我需要完成的任务。 我正在尝试用超链接替换所有页面上某些文本关键字的第一个实例。我还根据国家/地区代码对这些
我正在使用 JS 打开新页面并将 HTML 代码写入其中,但是当我尝试使用 document.write() 在新页面中编写 JS 时功能不起作用。显然,一旦看到 ,主 JS 就会关闭。用于即将打开的
提问不是为了解决问题,提问是为了更好地理解系统 专家!我知道每当你将 javascript 代码输入 javascript 引擎时,它会立即由 javascript 引擎执行。由于没有看过Engi
我在一个文件夹中有两个 javascript 文件。我想将一个变量的 javascript 文件传递到另一个。我应该使用什么程序? 最佳答案 window.postMessage用于跨文档消息。使
我有一个练习,我需要输入两个输入并检查它们是否都等于一个。 如果是 console.log 正则 console.log false 我试过这样的事情: function isPositive(fir
我正在做一个Web应用程序,计划允许其他网站(客户端)在其页面上嵌入以下javascript: 我的网络应用程序位于 http://example.org 。 我不能假设客户端网站的页面有 JQue
目前我正在使用三个外部 JS 文件。 我喜欢将所有三个 JS 文件合而为一。 尽一切可能。我创建 aio.js 并在 aio.js 中 src="https://code.jquery.com/
我有例如像这样的数组: var myArray = []; var item1 = { start: '08:00', end: '09:30' } var item2 = {
所以我正在制作一个 Chrome 扩展,它使用我制作的一些 TamperMonkey 脚本。我想要一个“主”javascript 文件,您可以在其中包含并执行其他脚本。我很擅长使用以下行将其他 jav
我有 A、B html 和 A、B javascript 文件。 并且,如何将 A JavaScript 中使用的全局变量直接移动到 B JavaScript 中? 示例 JavaScript) va
我需要将以下整个代码放入名为 activate.js 的 JavaScript 中。你能告诉我怎么做吗? var int = new int({ seconds: 30, mark
我已经为我的 .net Web 应用程序创建了母版页 EXAMPLE1.Master。他们的 I 将值存储在 JavaScript 变量中。我想在另一个 JS 文件中检索该变量。 示例1.大师:-
是否有任何库可以用来转换这样的代码: function () { var a = 1; } 像这样的代码: function () { var a = 1; } 在我的浏览器中。因为我在 Gi
我收到语法缺失 ) 错误 $(document).ready(function changeText() { var p = document.getElementById('bidp
我正在制作进度条。它有一个标签。我想调整某个脚本完成的标签。在找到可能的解决方案的一些答案后,我想出了以下脚本。第一个启动并按预期工作。然而,第二个却没有。它出什么问题了?代码如下: HTML:
这里有一个很简单的问题,我简单的头脑无法回答:为什么我在外部库中加载时,下面的匿名和onload函数没有运行?我错过了一些非常非常基本的东西。 Library.js 只有一行:console.log(
我知道 javascript 是一种客户端语言,但如果实际代码中嵌入的 javascript 代码以某种方式与在控制台上运行的代码不同,我会尝试找到答案。让我用一个例子来解释它: 我想创建一个像 Mi
我如何将这个内联 javascript 更改为 Unobtrusive JavaScript? 谢谢! 感谢您的回答,但它不起作用。我的代码是: PHP js文件 document.getElem
我正在寻找将简单的 JavaScript 对象“转储”到动态生成的 JavaScript 源代码中的最优雅的方法。 目的:假设我们有 node.js 服务器生成 HTML。我们在服务器端有一个对象x。
我是一名优秀的程序员,十分优秀!