1.4 data types,data structures and algorithms Flashcards
1.4.1 data types
uhhhh here we go
how to represent negative numbers in binary
-sign and magnitude
-2’s constant
sign and magnitude
the leftmost bit (most significant bit) is used as the sign bit. sign bit of 0 means its a positive number, sign bit of 1 means negative number. Remaining bits represent the value of number.
-first convert number to binary then if negative number put the sign bit as 1
sign and magnitude example
-binary 173: 10101101
-sign magnitude +173: 010101101
-sign magnitude -173: 110101101
two’s compliment
-most significant bit is 128 which is represented as -128
-if decimal number, first convert to binary. copy the binary number until the first zero then flip the rest of the bits (make 0 to 1, make 1 to 0)
two’s compliment example
binary 7: 00000111
two’s compliment: 11111001 (represents -7 as it starts with 1)
(-128+64+32+16+8+1 = -7)
1.4.2 data structures
bjkh
what is a stack?
a last in first out data structure, where items can only be removed from and added to the top of the list
where might stacks be used
-back button in a web page
-undo buttons
operations on stack
-Push: Adds an element to the top of the stack.
-Pop: Removes and returns the top element of the stack.
-Peek: Returns the top element of the stack without removing it.
-IsEmpty: Checks if the stack is empty.
-Size: Returns the number of elements in the stack
-isFull: checks if stack is full and returns boolean value
what is a queue
first in first out (FIFO) data structure; items are added to the end of the queue
and are removed from the front of the queue
where are queues used
printers, keyboards and simulators
operations on queues
-Enqueue: Adds an element to the end (rear) of the queue.
-Dequeue: Removes and returns the front element of the queue.
-isEmpty():checks to see if the queue is empty
-isFull(): checks to see if the queue is full
stacks and queues differences
-In Stack, elements are added and removed from the same end (the top). In Queue, elements are added at the rear and removed from the front
-stacks use a single pointer to manage the top element, while queues use two pointers to manage both the front and the rear elements.
static data structure
-example
those that have a fixed size and structure at compile time
-array
dynamic data structure
-example
The memory capacity of a dynamic data structure is not fixed
-list