Skip to content

Commit

Permalink
singly & doubly linked list
Browse files Browse the repository at this point in the history
  • Loading branch information
brendonmiranda committed Oct 31, 2024
1 parent 0ca45c5 commit 4b3c6ba
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ This repo register my evolution in the Cracking The Coding Interview book as I g

[My Binary Search Implementation](https://github.com/brendonmiranda/CrackingTheCodingInterview/blob/main/src/main/java/cracking/the/code/interview/chapter4/BinarySearch.java)

[My Singly Linked List Implementation](https://github.com/brendonmiranda/CrackingTheCodingInterview/blob/main/src/main/java/cracking/the/code/interview/chapter4/SinglyLinkedList.java)

[My Doubly Linked List Implementation](https://github.com/brendonmiranda/CrackingTheCodingInterview/blob/main/src/main/java/cracking/the/code/interview/chapter4/DoublyLinkedList.java)

# Chapter 5 | Bit Manipulation

[**5.1** Insertion: You are given two 32-bit numbers, N and M, and two bit positions, i and j. Write a method to insert M into N such that M starts at bit j and ends at bit i. You can assume that the bits j through i have enough space to fit all of M. That is, if M=10011, you can assume that there ate at least 5 bits between j and i. You would not, for example, have j=3 and i=2, because M could not fully fit between bit 3 and 2.](https://github.com/brendonmiranda/CrackingTheCodingInterview/blob/main/src/main/java/cracking/the/code/interview/chapter5/Question51.java)
Expand Down

0 comments on commit 4b3c6ba

Please sign in to comment.