You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vhd-util check is very slow because of the double loop. We can create an array of sector ranges occupied by each extent and then sort it. We can then check for overlaps, so the whole process should take O(NlogN) time instead of O(N^2).
The text was updated successfully, but these errors were encountered:
vhd-util check is very slow because of the double loop. We can create an array of sector ranges occupied by each extent and then sort it. We can then check for overlaps, so the whole process should take O(NlogN) time instead of O(N^2).
The text was updated successfully, but these errors were encountered: