Bit Manipulation

  Рет қаралды 61,718

Make School

Make School

Күн бұрын

Пікірлер: 55
@LarisaAB
@LarisaAB Жыл бұрын
this is the only video that actually helped me understand bit manipulation, thank you a lot
@aronpop1447
@aronpop1447 6 жыл бұрын
Spoiler alert! Exercise question at the end: The idea is to XOR the two numbers and then count how many 1's does the XOR'ed number has. This works because XOR gives 1 only if one bit is 0 and one is 1, so basically XOR solves our problem. We are faced with the task to count how many 1's does a number has. For that you initialize a counter variable to 0 which will hold the solution, then you add to this variable XOR'ed number & 1 then right shift by 1. You do this while your number is greater then 0.
@HanifCarroll
@HanifCarroll 4 жыл бұрын
Since others have posted solutions to the last exercise, I'll post my alternative solution: def compare_bits(n1, n2): count = 0 while n1 or n2: if n1 & 1 != n2 & 1: count += 1 n1, n2 = n1 >> 1, n2 >> 1 return count
@griffintoal4410
@griffintoal4410 7 жыл бұрын
im a bit lost :)
@turn1210
@turn1210 6 жыл бұрын
Nice
@chhasnainazam7948
@chhasnainazam7948 5 жыл бұрын
hahahaahha me too :D
@MAA-op4gw
@MAA-op4gw Жыл бұрын
Thank you so much.
@jagannathanrajagopalan2941
@jagannathanrajagopalan2941 4 жыл бұрын
why not use XOR to clear a bit? any reason? i mean 1
@adibhargava7055
@adibhargava7055 3 жыл бұрын
But what if the starting bit is a 1?
@ytdl
@ytdl Ай бұрын
Because if you try to clear a bit that is 0 / already cleared it will return a 1.
@adibhargava7055
@adibhargava7055 3 жыл бұрын
You can also say floor function instead of round down to negative infinity @12:05
@ytdl
@ytdl 5 күн бұрын
Never thought i'd see ster teaching bit manipulation
@cschipg4688
@cschipg4688 2 жыл бұрын
This guy is so chill presenting. how do you get that relaxed mate
@maheshj01
@maheshj01 2 жыл бұрын
My two cents - Think of it like a normal conversation - and keep your focus on the topic
@Paradise-kv7fn
@Paradise-kv7fn 5 жыл бұрын
A easier way for the problem of checking a bit would be return (1
@animodium2670
@animodium2670 3 жыл бұрын
This can be simplified like so: return (1
@LostInNeverland128
@LostInNeverland128 6 жыл бұрын
ice town costs ice clown his town crown
@UdaraAlwis
@UdaraAlwis 4 жыл бұрын
yessss! this exactly! I believe only a few will get this reference xD
@eirikolsnes
@eirikolsnes 7 жыл бұрын
Thank you! Nice to see how giving all students time to respond resulted in valuable input.
@_sayan_roy_
@_sayan_roy_ 8 жыл бұрын
24:12 , More intuitive for me is:- int modBit(x,pos,state){ mask1 = 1
@_sayan_roy_
@_sayan_roy_ 8 жыл бұрын
+l0ad1 Thanks a lot... :) Now,I do.
@arunsiddharth5184
@arunsiddharth5184 7 жыл бұрын
Here you go: int result(int num,int num2){ int x =num ^ num2; int count=0; while(x){ x=(x)&(x-1); count++; } return count; }
@AviPars
@AviPars 2 жыл бұрын
How would I flip all the bytes ?
@ahmedramzy892
@ahmedramzy892 Жыл бұрын
great work 🥰
@satadhi
@satadhi 7 жыл бұрын
0:18 i mean seriously !
@satadhi
@satadhi 7 жыл бұрын
btw cool videos
@sergioropo3019
@sergioropo3019 6 жыл бұрын
Very informative and well done. Thank you.
@iXNomad
@iXNomad 2 жыл бұрын
Why do you use -state if you can just write: x = (x & ~(1
@abdullahnoman8618
@abdullahnoman8618 7 жыл бұрын
you could use the xor operator in clearing the bit
@aronpop1447
@aronpop1447 6 жыл бұрын
Couldnt have you used the ^ operator for clearing the bits? Exact same code except return x ^ mask?
@aaryandhakal6098
@aaryandhakal6098 3 жыл бұрын
Might be a little late or u might have even figured ti out but i did use an XOR and the problem is clear_bit(5,1) presents as a counter example which is why XOR is just for flipping as he showed later but seeing as how u solved his last problem u might have watched the entire video and then found that why XOR doesnt work on ure own but still just wanted to help :D
@olivergreen6436
@olivergreen6436 4 жыл бұрын
Thanks it's very informative
@panmacabre9895
@panmacabre9895 Жыл бұрын
that's freaking amazing
@yamamarques27
@yamamarques27 2 жыл бұрын
//Write a function to count the numnber of bits that are different between two numbers // Time complexity(1); Space complexity(1) public static void numberOfBitsDifferent(int value1, int value2){ int combination = (value1 ^ value2); int count = 0; for (int i=0; i < 32; i++){ int mask = 1 0)? 1 : 0; } System.out.println("Number of different bits: "+ count); }
@gauravsoni5974
@gauravsoni5974 6 жыл бұрын
What is the mask in terms of bit manipulation?
@dtm7743
@dtm7743 3 жыл бұрын
predefined set of bits used to pick and choose which specific bits will be modified by subsequent operations
@tushararora347
@tushararora347 7 жыл бұрын
What's that sound at 22:41?
@sergioropo3019
@sergioropo3019 6 жыл бұрын
Obviously is cartoon character exclamation.
@II_superluminal_II
@II_superluminal_II 4 жыл бұрын
now i get brainfuck holy shit, brainfuck is fast as fuck and now I know why.......
@tauseef10s
@tauseef10s 8 жыл бұрын
//count number of different bits #include using namespace std; int main(){ // your code goes here int number1, number2, result, count=0; cin >> number1; cin >> number2; result = number1 ^ number2; while (result){ count += result & 1; result = result >> 1; } cout
@oliviazhai1831
@oliviazhai1831 2 жыл бұрын
This is very helpful!!! Thanks
@mr.anonymous6098
@mr.anonymous6098 2 жыл бұрын
Great video! Highly recommend it. Wish he was my teacher
@nishajakhar5867
@nishajakhar5867 6 жыл бұрын
You look damn awesome....And even loved your teaching style..
@vaibhavtiwari6992
@vaibhavtiwari6992 4 жыл бұрын
TF LOL
@cristianrestrepolopez976
@cristianrestrepolopez976 3 жыл бұрын
Thank you so much this video was extremely helpful :)
@pedroalonsoms
@pedroalonsoms 2 жыл бұрын
such a good video
@cadupoles
@cadupoles 7 жыл бұрын
Thank you
@ashishpatel0720
@ashishpatel0720 8 жыл бұрын
very good video thank you very much
@TDLRest
@TDLRest 4 жыл бұрын
thanks so much for this! you're awesome teacher
@vaibhavtiwari6992
@vaibhavtiwari6992 4 жыл бұрын
THIS IS GOOD FR SOMEONE WHO ALREADY KNOWS THIS STUFF.
@gigamilk6981
@gigamilk6981 3 жыл бұрын
This guys pretty cute
@gigamilk6981
@gigamilk6981 3 жыл бұрын
I take it back hes very cute
@jonathancao1396
@jonathancao1396 7 жыл бұрын
i love you
3. Bit Hacks
1:18:55
MIT OpenCourseWare
Рет қаралды 67 М.
Add Two Numbers Without The "+" Sign (Bit Shifting Basics)
18:25
Back To Back SWE
Рет қаралды 125 М.
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 30 МЛН
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 41 МЛН
The Only Unbreakable Law
53:25
Molly Rocket
Рет қаралды 343 М.
Dear Game Developers, Stop Messing This Up!
22:19
Jonas Tyroller
Рет қаралды 764 М.
Intro to Binary and Bitwise Operators in C++
21:40
The Cherno
Рет қаралды 139 М.
Faster than Rust and C++: the PERFECT hash table
33:52
strager
Рет қаралды 611 М.
When Optimisations Work, But for the Wrong Reasons
22:19
SimonDev
Рет қаралды 1,1 МЛН
The Art of Code - Dylan Beattie
1:00:49
NDC Conferences
Рет қаралды 4,7 МЛН
6. Recursion and Dictionaries
48:22
MIT OpenCourseWare
Рет қаралды 380 М.
Running a Buffer Overflow Attack - Computerphile
17:30
Computerphile
Рет қаралды 2 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН