Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Internal representation #5

Open
Y-Less opened this issue Oct 3, 2017 · 3 comments
Open

Internal representation #5

Y-Less opened this issue Oct 3, 2017 · 3 comments

Comments

@Y-Less
Copy link

Y-Less commented Oct 3, 2017

If you don't see it on the other fork:

karimcambridge/samp-foreach#10 (comment)

For reference, your Iter_Remove:

foreach/foreach.inc

Lines 1543 to 1561 in 9cca892

stock Iter_SafeRemoveInternal(&count, array[], value, &last, size)
{
if (0 <= value < size && array[value] <= size) {
last = size;
new
next = array[last];
while (next < size) {
if (next == value) {
array[last] = array[value];
array[value] = size + 1;
--count;
return 1;
}
last = next;
next = array[last];
}
}
return 0;
}

My current one:

https://github.com/Misiur/YSI-Includes/blob/6e34cff72408958ca7f800d97eca529db2972713/YSI_Data/y_foreach/impl.inc#L426-L440

stock Iter_SafeRemove_InternalC(&count, array[], size, value, &last)
{
	if (0 <= value < size++ && array[value] > value)
	{
		// This version has reverse iterators, which need maintaining, and can
		// be used in place of a loop to jump backwards in the list.
		return
			--count,
			last = (array[(value - 1) % size] - 1) % size,
			array[last] = array[value],
			array[value] = value,
			array[(array[last] - 1) % size] = (last + 1) % size;
	}
	return INVALID_ITERATOR_SLOT;
}

(Don't know why it didn't make that link to the other repository in to a nice box).

@karimcambridge
Copy link
Contributor

"(Don't know why it didn't make that link to the other repository in to a nice box).".

It did on chrome 61, win10.

Anyway, I did remember looking at the current YSI and attempting to use improvements just like that one, but I remember running in an issue that made me stop. I don't remember what it was though.

@Y-Less
Copy link
Author

Y-Less commented Oct 3, 2017

Do you see three chunks of code? I made two links - the first to this repository, which github turned in to a representation of code; the second to a different repository, which was left as a link. As a result, I manually copied the code, so two chunks are visible.

@karimcambridge
Copy link
Contributor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants