Testing Coding problems can sometimes become hectic. Here are some tips to use while testing Algorithmic Programming Problems.
There are generally four major categories of defects in program:
- Syntactical Errors
- Semantic Errors
- Run-time Errors / Exception
- Logical Errors
Syntactical Errors
Syntactical errors are generally grammatical errors in a program.
To Check the program for Syntactical errors you should follow below steps:
- Compiling the Code in compiler
- Some Common Syntactical errors are:
- Misplacing Braces, parentheses etc.
- Misplaced end of comments
- Typographical errors
- Misplaced Keywords
Semantic Errors
Semantic errors may obey grammar, but violate other rules of language.
Some Common Semantic Errors are:
- Perform incorrect operations on primitive data types.
- Invoking instance method which is not defined.
- Not declaring a variable before using it.
Runtime Errors / Exceptions
Runtime errors generally occur at the time of the program execution.
Examples of the runtime errors / exceptions are:
- Division by zero
- Array index out of bounds
- Number of format errors
- Null Pointer Exception
Logical Errors
Logic errors are a mistake in the design of the class or in the implementation of an algorithm.
Logical errors can be avoided by:
- Strive for clarity and simplicity
- Consider corner or extreme cases
- Thinking of the pre / post conditions
- Organizing the code
Testing Logical Errors in Code with Example
Testing Logical Errors / Bugs in code are difficult to find. Here is a walk-through of the testing logical errors in code with the help of an example.
Maximum Pairwise Product Problem – Given an array or a sequence of N numbers and goal is to find a number which can be obtained by multiplying some two numbers from this sequence.
Solutions
Naive Solution – O(N2)
Iterate through every possible pair in the sequence using a nested for loop.
C++
// Function to find the maximum // pairwise product int MaxPairwiseProduct( const std::vector< int >& numbers) { int max_product = 0; int n = numbers.size(); // Loop to find the pairs // with the maximum product for ( int first = 0; first < n; ++first) { for ( int second = first + 1; second < n; ++second) { max_product = std::max( max_product, numbers[first] * numbers[second]); } } return max_product; } |
Efficient Approach:
The best solution for this problem would be to find the two largest and two smallest numbers from sequence and return a maximum of products between (largest, second largest) and (smallest, second smallest). And that would be in O(n) time.
Below is the implementation of the above approach:
C++
// Efficient Approach for the // maximum product pair long long MaxPairwiseProductFast( const std::vector< int >& numbers) { int large1 = -1; int large2 = -1; int n = numbers.size(); // Loop to iterate over the elements // of the given array for ( int i = 0; i < n; ++i) { if (numbers[large1] < numbers[i] || large1 == -1) large1 = i; } for ( int j = 0; j < n; ++j) { if ((numbers[j] != numbers[large1]) && ((numbers[large2] < numbers[j]) || (large2 == -1))) { large2 = j; } } return (( long long )numbers[large1] * numbers[large2]); } |
Testing
You can do a variety of testing on your code, but most common testing can be this three :
- Before submitting the code for evaluation one should test the code with example tests from the problem statement, which are the easiest to type in and verify.
- Small corner cases, which can be typed in by hand and for which you know the answers. We have tackled some corner cases in our implementation also: (long long) for tackling integer range issues, (if statements) and (abs) checks.
- Big random tests, which are generated by simple scripts to test time complexity. This type of testing is called as Stress testing.
Stress Test your Code:
This is actually a pretty standard situation when solving algorithmic programming problems. So what is stress testing? In general, it is a script that creates random tests in an infinite loop, and for each test, it calls your solution on this test and an alternative correct solution on the same test and compares the outputs. If you find a test on which your solutions output differs, you can check which one of them returns the wrong answer, debug it and then rerun the stress testing script.
Below is the example of stress testing of code of above example problem:
C++
#include <bits/stdc++.h> using namespace std; // Function to show the stress // Testing of the code int main() { while ( true ) { int n = rand () % 3 + 2; cout << n << endl; std::vector< int > a; for ( int i = 0; i < n; ++i) { a.push_back( rand () % 10); } for ( int i = 0; i < n; ++i) { cout << a[i] << ' ' ; } cout << endl; long long res1 = MaxPairwiseProduct(a); long long res2 = MaxPairwiseProductFast(a); if (res1 != res2) { cout << "Wrong Answer: " << res1 << ' ' << res2 << endl; break ; } else cout << "OK\n" ; } return 0; } |
This simple script is your stress test algorithm. Running this you can find that the previous implementations differ on some cases when duplicate elements appear in the array.
Now this is because of an overlooked mistake in the algorithm, i.e We check that number at position j is different from the maximum we’ve already found. But that’s exactly the problem. What we need is instead, that j must be different from large1 because we don’t want to find the same index, but we can find number which is equal to the first found maximum. So, instead of this comparison, what we actually need is to compare j with large1.
Final Solution without Errors:
C++
// Function to find the maximum // pair wise product long long MaxPairwiseProductSuperFast( const std::vector< int >& numbers) { int poslarge1 = INT_MIN, poslarge2 = INT_MIN; int neglarge1 = INT_MIN, neglarge2 = INT_MIN; int n = numbers.size(); if (n < 2) { return 0; } if (n == 2) { return (( long long )numbers[0] * numbers[1]); } // Loop to iterate over the elements // of the array and find the two // largest and two smallest elements for ( int i = 0; i < n; ++i) { if (numbers[i] > poslarge1) { poslarge2 = poslarge1; poslarge1 = numbers[i]; } else if (numbers[i] > poslarge2) poslarge2 = numbers[i]; if (numbers[i] < 0 && abs (numbers[i]) > abs (neglarge1)) { neglarge2 = neglarge1; neglarge1 = numbers[i]; } else if (numbers[i] < 0 && abs (numbers[i]) > abs (neglarge2)) neglarge2 = numbers[i]; } return ( std::max( ( long long )poslarge1 * poslarge2, ( long long )neglarge1 * neglarge2)); } |
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 neveropen!