Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
6e9a088e
Commit
6e9a088e
authored
Apr 28, 2014
by
Utkarsh Kukreti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Speed up Array#select! from O(n^2) to O(n).
parent
220f3124
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
mrbgems/mruby-array-ext/mrblib/array.rb
mrbgems/mruby-array-ext/mrblib/array.rb
+5
-10
No files found.
mrbgems/mruby-array-ext/mrblib/array.rb
View file @
6e9a088e
...
...
@@ -675,16 +675,11 @@ class Array
def
select!
(
&
block
)
return
to_enum
:select!
unless
block_given?
idx
=
0
len
=
self
.
size
while
idx
<
self
.
size
do
if
block
.
call
(
self
[
idx
])
idx
+=
1
else
self
.
delete_at
(
idx
)
end
result
=
[]
self
.
each
do
|
x
|
result
<<
x
if
block
.
call
(
x
)
end
return
nil
if
self
.
size
==
len
self
return
nil
if
self
.
size
==
result
.
size
self
.
replace
(
result
)
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment