Please help me listing Dynamic Programming Problems.

Hope it would be useful for everyone.

#include <stdio.h>

int main()
{
int array[100], n, c, d, swap;

printf(“Enter number of elements\n”);
scanf("%d", &n);

printf(“Enter %d integers\n”, n);

for (c = 0; c < n; c++)
scanf("%d", &array[c]);

for (c = 0 ; c < ( n - 1 ); c++)
{
for (d = 0 ; d < n - c - 1; d++)
{
if (array[d] > array[d+1]) /* For decreasing order use < */
{
swap = array[d];
array[d] = array[d+1];
array[d+1] = swap;
}
}
}

printf(“Sorted list in ascending order:\n”);

for ( c = 0 ; c < n ; c++ )
printf("%d\n", array[c]);
}

use a2oj problem classifier- https://a2oj.com/categories

You’ll have prolems sorted on the basis of difficulty, from various online judges

use a2oj problem classifier- https://a2oj.com/categories

You’ll have prolems sorted on the basis of difficulty, from various online judges

1 Like

i have done c++ only so bascially i get problem with dynamic when i am either not making class content public it a ip thing to remember

i think u must have to use linklist for dynamially programme and also there are new&delete operator are important.

Keep adding…

You have problem with listing the dynamic programming which have very strong relation with C++. If you have strong base of C++ then you don’t have any problem with it. So, You just go and learn that basic development langugage. Actually, I have some questions on essay services which i like to put in this website and also like to answer of your question.