问题标签 [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.

0 投票
10 回答
46911 浏览

delphi - 对数组进行排序的最佳方法

假设我有一组记录,我想根据记录中的一个字段对其进行排序。实现这一目标的最佳方法是什么?

0 投票
2 回答
349 浏览

php - PHP、数组和引用

为什么下面的代码不能像我预期的那样工作?

预期结果:

实际结果:

0 投票
28 回答
374776 浏览

c# - 比较 .NET 中的两个字节数组

我怎样才能快速做到这一点?

当然我可以这样做:

但我正在寻找一个BCL函数或一些高度优化的经过验证的方法来做到这一点。

工作得很好,但它看起来不适用于 x64。

请注意我在这里的超快速答案。

0 投票
7 回答
3763 浏览

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?

0 投票
5 回答
236 浏览

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.

0 投票
10 回答
118682 浏览

.net - VB.NET 空字符串数组

如何创建一个空的一维字符串数组?

0 投票
6 回答
14811 浏览

javascript - DOM 对象的 Javascript 集合 - 为什么我不能使用 Array.reverse() 反转?

反转 DOM 对象数组可能会出现什么问题,如下面的代码所示:

在 Firefox 3 中,当我调用该reverse()方法时,脚本停止执行并在 Web 开发人员工具栏的控制台中显示以下错误:

imagesArr变量可以通过for循环进行迭代,并且可以访问类似的元素,那么为什么在调用方法imagesArr[i]时不将其视为数组呢?reverse()

0 投票
12 回答
95640 浏览

javascript - 按值对 Html Select 的选项进行排序的最有效方法是什么,同时保留当前选定的项目?

我有 jQuery,但我不确定它是否有任何内置的排序助手。text我可以为每个项目的、value和属性制作一个二维数组selected,但我认为内置的 javascript 不能Array.sort()正常工作。

0 投票
7 回答
7214 浏览

python - 可以像在 Python 中一样在 MATLAB 中进行并行遍历吗?

使用该zip函数,Python 允许 for 循环并行遍历多个序列。

for (x,y) in zip(List1, List2):

MATLAB 有等效的语法吗?如果不是,那么使用 MATLAB 同时迭代两个并行数组的最佳方法是什么?

0 投票
7 回答
8681 浏览

vb.net - 如何迭代锯齿状数组?

这让我发疯了好几天。为什么以下不起作用?

另外,如果数组看起来像这样呢?