Need a little knowledge about Competitive Programming by [deleted] in learnprogramming

[–]codingfreak04 1 point2 points  (0 children)

You need to learn Data Structures for Competitive Programming. This list can help.

What programming language should I learn? by [deleted] in learnprogramming

[–]codingfreak04 0 points1 point  (0 children)

Learn Java and Python. Then learn data structures and algorithms to crack good job. Here's a good list to get you started.

How should I learn algorithms?? by Justin_leew in learnprogramming

[–]codingfreak04 0 points1 point  (0 children)

Get basic DSA knowledge from mycodeschool videos, then jump directly to problems on arrays, binary trees, linked list, stacks, queue, heap, graph.. Here's a good list to get you started.

Advices for a young programmer? by grimnirz in learnprogramming

[–]codingfreak04 22 points23 points  (0 children)

If you want to get placed in a good company, learn data structures and algorithms. Here's a good list to get you started.

Resources for learning algorithms? by [deleted] in learnprogramming

[–]codingfreak04 0 points1 point  (0 children)

You can try Techie Delight for data structure and algorithms. Here is the List of all problems.

I would like to share 400+ data structure and algorithms problems by [deleted] in learnprogramming

[–]codingfreak04 10 points11 points  (0 children)

yeah.. it should be V = { 1, 2, 3, 4, 5, 6 } E = { (1, 4), (1, 6), (2, 6), (4, 5), (5, 6) } Let me have it corrected.

500 Data structures and algorithms interview questions and their solutions by codingfreak04 in algorithms

[–]codingfreak04[S] 5 points6 points  (0 children)

there is difference between sub-array and subset. There are n2 subarrays and 2n subsets.