2.2.1 - programming techniques Flashcards
11
algorithm
A set of rules or a sequence of steps specifying how to solve a problem.
variables
Identifiers (names} given to memory locations whose contents will change during the course of the program.
2 reasons why variable names should be standardised
- makes the program easy to follow and update when required.
- leaves less room for errors and
inconsistencies in the names in a large program
3 basic programming constructs
- sequence
- selection
- iteration
define sequence
just two or more statements executed one after the other
define selection
used to select which statement will be executed next, depending on some
condition
iteration
involves performing a
loop in the program to repeat a number of statements
3 types of loops
- while…endwhile
- repeat…until
- for…next
integrated development environment (IDE)
A single program used for developing programs made from a number of components.
compiler/ interpretor
Translates high level code into machine code.
3 IDE tools to spot logic errors
- breakpoint
- watch
- step through
subroutine
A named block of code which performs a specific task within a program.
2 types of subroutines
- functions
- procedures
function
A named section of a program that performs a specific task. Returns a value.
procedure
Performs a task but doesn’t return a value.
by value
A copy of the variable is passed to the subroutine. Changing a parameter inside the subroutine will not affect its value outside the subroutine.
by reference
The memory location of the variable is passed to the subroutine. If it is changed in the subroutine, its value in the main program will also change.
global variables
Declared in the main program and can be used anywhere in the program, including subroutines.
local variables
Can be used within the subroutine and exist only during the execution of the subroutine. Cannot be accessed outside the subroutine.
modular programming
The process of subdividing a computer program into separate sub-programs.
advantages of subroutines
- Small so relatively easy to understand, debug and maintain.
- Can be tested independently.
- Can be reused indifferent programs or parts of the same program.
- Programmers can work on different subroutines.
- A large project becomes easier to monitor and control.
2 searching algorithms
- linear search
- binary search
linear search pseudocode
function LinearSearch(alist,itemSought}
index = -1
i = 0
found = False
while i < length(alist) and found = False
if alist[iI = itemSought then
index = i
found = True
endif
i = i + 1
endwhile
return index
endfunction
linear search
If the items are not in any particular sequence, the data items have to be searched one by one until the required one is found or the end of the list is reached.
binary search
The algorithm works by repeatedly dividing in half the portion of the SORTED data list that could contain the required data item. This is continued until there is only one item in the list.
binary search pseudocode
function binarySearch(aList, itemSought}
found = False
index = -1
first = C
last = len (aList)-1
while first <= last and found = False
midpoint = Integer part of ((first + last)/2)
if aList[midpoint) = itemSought then
found = True
index = midpoint
else
if aList(midpoint) < itemSought then
first = midpoint + l
else
last = midpoint - i
endif
endif
endwhile
return index
endfunction
bubble sort
- Go through the array, comparing each item with the one next to it. If it is greater, swap them.
- The last element of the array will be in the correct place after the first pass
- Repeat n-2 times, reducing by one on each pass the number of elements to be examined
bubble sort pseudocode
numItems = len(numbers)
for i = 0 to numItems - 2
for j = 0 to(numItems - i - 2)
if numbers [j] > numbers [j + 1]
temp = numbers[j]
numbers [ j ] = numbers[ j + 1]
numbers [j+1] = temp
endif
next j
print (numbers)
next i
insertion sort
The algorithm takes one data item
from the list and places It in the correct location in the list. This process is
repeated until there are no more unsorted data items in the list.
insertion sort pseudocode
procedure inaertionSort(alist)
n = len(alist)
for index = 1 to n - 1
currentvalue = alist[index]
position = index
while position > 0 and alist[position - l| >
currentvalue
alist(position] = alist[position - 1]
position = position - l
endwhile
alist(position) = currentvalue
next index
endprocedure
breakpoint
Allows the program to be stopped at a predetermined point in order to inspect its state.
step-through
Allows the programmer to watch the effects of each line of code.
watch
Code can be examined as it is running which allows logical errors to be pinpointed.
crash dump
Shows the state of variables at the point where an error occurs.
disadvantages of global variables
- they make it difficult to integrate modules
- they increase the complexity of a program
- may cause conflicts with names in other modules
- may be inadvertently changed when a program is complex
Why is parameter passing to a function a better alternative to global variables?
Only a copy of the data passed may be changed so no unforeseen errors will occur in other modules.
recursion
When a function calls itself from within the function.
parameter
An item of data passed into a subroutine when it is called that is used as a variable in the subroutine.
procedural programming language
A high-level language that gives a series of instructions in a logical order.
scope
A procedure that the variable is valid for.
scope in relation to global and local variables
A local variable takes precedence over a global variable of the same name.