问题标签 [arrays]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
delphi - 对数组进行排序的最佳方法
假设我有一组记录,我想根据记录中的一个字段对其进行排序。实现这一目标的最佳方法是什么?
php - PHP、数组和引用
为什么下面的代码不能像我预期的那样工作?
预期结果:
实际结果:
c# - Order an Array like another Array in C#
What is the best algorithm to take array like below:
A {0,1,2,3}
I expected to order it like array below:
B {3,1,0,2}
Any ideas?
php - Given that I have a hash of id(key) and countries(values) sorted alphabetically, what is the best way to bubble up an entry to the top of the stack?
This is a php example, but an algorithm for any language would do. What I specifically want to do is bubble up the United States and Canada to the top of the list. Here is an example of the array shortened for brevity.
The id's need to stay intact. So making them -1 or -2 will unfortunately not work.
.net - VB.NET 空字符串数组
如何创建一个空的一维字符串数组?
javascript - DOM 对象的 Javascript 集合 - 为什么我不能使用 Array.reverse() 反转?
反转 DOM 对象数组可能会出现什么问题,如下面的代码所示:
在 Firefox 3 中,当我调用该reverse()
方法时,脚本停止执行并在 Web 开发人员工具栏的控制台中显示以下错误:
imagesArr
变量可以通过for循环进行迭代,并且可以访问类似的元素,那么为什么在调用方法imagesArr[i]
时不将其视为数组呢?reverse()
javascript - 按值对 Html Select 的选项进行排序的最有效方法是什么,同时保留当前选定的项目?
我有 jQuery,但我不确定它是否有任何内置的排序助手。text
我可以为每个项目的、value
和属性制作一个二维数组selected
,但我认为内置的 javascript 不能Array.sort()
正常工作。
python - 可以像在 Python 中一样在 MATLAB 中进行并行遍历吗?
使用该zip
函数,Python 允许 for 循环并行遍历多个序列。
for (x,y) in zip(List1, List2):
MATLAB 有等效的语法吗?如果不是,那么使用 MATLAB 同时迭代两个并行数组的最佳方法是什么?
vb.net - 如何迭代锯齿状数组?
这让我发疯了好几天。为什么以下不起作用?
另外,如果数组看起来像这样呢?