Questions tagged [unstructured-loop]
2 questions
2
votes
1 answer
McCabe's Complexity Metric and Independent Paths
int maxValue = m[0][0];
for (int i = 0; i < N; i++)
{
for (int j = 0; j < N; j++)
{
if ( m[i][j] >maxValue )
{
maxValue = m[i][j];
…

sYl3r
- 393
- 5
- 16
0
votes
1 answer
How do I write and read the unstructured data in Hadoop-Singlenode server (E.x., image and video)?
How do I write and read the unstructured data in Hadoop-Singlenode server (image and video)

Nandhi
- 1