Anton
✅ Bubbel sorting
after each iteration, the largest element will be propagated through the whole array and end up last.
then you kind of ignore the last position since it already has the largest element.
repeat again, until there's nothing left to sort.
11 replies
Default literal and non nullable reference types
Basically, every time you call a function, you allocate space (consecutive memory on the stack) for its parameters and locals (also called a stack frame), copy your values there, them bump the stack pointer to contain the address after that new memory. But the order in which you reserve this memory is consistent, so knowing either the start address of those locals or the address after you can reach any one of them. And functions do. They know that the stack pointer is going to have the address right after these locals, so they offset back from that address
90 replies