gpt4 book ai didi

perl - 在 Perl 中使用引用指向滑动窗口数组

转载 作者:行者123 更新时间:2023-12-05 00:35:41 25 4
gpt4 key购买 nike

这是我的问题:我有 2 个数组。一个是字符数组,代表一个滑动窗口。角色从一开始就被转移并在最后被插入。我想使用第二个数组来存储对数组切片的引用,这些切片在字符移动时“跟随”它们。例子:

my @char_array = ('h','e','l','l','o','w','o','r','l','d');
my $char_arr_ref=[@char_array[1..$#char_array]];
print @$char_arr_ref, "\n"; # slice contains 'elloworld';
shift(@char_array);
push(@char_array), 'x';
print @$char_arr_ref, "\n"; # slice still contains 'elloworld', not 'lloworldx' as I need;

换句话说,我希望能够使用带有对数组切片的引用的第二个数组(例如,就像我在 C 中使用指针数组所做的那样)。

在 Perl 中是否有一种惯用的方法来做到这一点?

更新:这是进行快速文本搜索的更大程序的一部分。我打算使用引用的散列(比如,而不是速度非常慢的“索引”函数。我需要在 Perl 中执行此操作。

最佳答案

在 C 中,您的窗口可能是使用指针算法实现的。

const char* s = str+1;
const char* e = str+len;
for (const char* p=s; p!=e; ++p) putc(*p);

除了指针算术不允许您调整缓冲区的大小( push @char_array, 'x'; )。即使在 C 中,您也必须使用偏移量。
size_t si = 1;
size_t ei = len;
for (size_t i=si; i!=e1; ++i) putc(str[i]);

这是幸运的,因为 Perl 没有指针,更不用说指针运算了。但是抵消?没问题!
my @char_array = split //, 'helloworld';
my ($s, $e) = (1, $#char_array);
say @char_array[$s..$e]; # elloworld
shift @char_array;
push @char_array, 'x';
say @char_array[$s..$e]; # lloworldx

如果我们实际上是在谈论字符,那么字符串会更有效率。
my $char_array = 'helloworld';
my ($s, $e) = (1, length($char_array));
say substr($char_array, $s, $e-$s+1); # elloworld
$char_array =~ s/^.//s;
$char_array .= 'x';
say substr($char_array, $s, $e-$s+1); # lloworldx

事实上,如果我们真的在谈论字符,我们很幸运,因为我们可以使用左值 substr 并让 Perl 为我们处理偏移量!
my $char_array = 'helloworld';
my $substr_ref = \substr($char_array, 1, length($char_array)-1);
say $$substr_ref; # elloworld
$char_array =~ s/^.//s;
$char_array .= 'x';
say $$substr_ref; # lloworldx

比 C 更容易,或多或少具有相同的好处!

关于perl - 在 Perl 中使用引用指向滑动窗口数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14353341/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com