If you can't wrap your head around list and array data types, can you really learn to code (and is it worth going to bootcamp)?
-
I've got basic Javascript down, can create loops, if/else etc. But I hit this and my head explodes, especially the exercises at the bottom. Lists (objects nested in objects), recursive functions, etc. http://eloquentjavascript.net/2nd_edition/preview/04_data.html Can you write arrayToList, listToArray, prepend, and nth? I've done all three JS tracks on Code School, JS on Codecademy, and read a bunch of other material, but I've been wrestling with this for hours. console.log(arrayToList([10, 20])); // â {value: 10, rest: {value: 20, rest: null}} console.log(listToArray(arrayToList([10, 20, 30]))); // â [10, 20, 30] console.log(prepend(10, prepend(20, null))); // â {value: 10, rest: {value: 20, rest: null}} console.log(nth(arrayToList([10, 20, 30]), 1)); // â 20
-
Answer:
To briefly answer your question: Yes, you can. The fact that you've been trying this for hours and have resorted to Quora is proof that you have what it takes. That is the hardest part of our field: long hours of getting nowhere and not giving up. It happens to even the most experienced and brightest programmers, and usually at that point it's a good idea to ask someone else for help, as you did :) To give you my own example: I learned C++ at age 15, did a CS degree from a top school, worked at a successful startup and now am at one of the top rated places to work. When I first started off, I had so much trouble understanding the concepts that I literally broke into tears several times. I used to wonder whether a time would come when I would be able to program with ease. Let me tell you: The time will come. Now, to answer your specific question: With data structures, you really have to draw out some diagrams with pen and paper. Draw out an array (your input) and then the steps it would take to turn it into a linked list (called a list in that problem). Also, a heads up for this specific problem: You'll have to create a brand new Object (or dict, doesn't matter) for each element of the input array. So, rather than modifying the input array, you will create new Objects, link them together, and return them. The way to return them is by returning the first object in the list, the "head" if you will. That's because the other objects can be obtained by simply calling .next on the head Object, and the one after that, and so on. Also, this is a problem you'd typically solve in a 2nd-year CS course called Data Structures. Great job on getting so far, and you saved $30k too. Keep it up!
Anonymous at Quora Visit the source
Other answers
When I was three or four years into my career, I got so frustrated learning something new I threw a pencil cup at my monitor. Then I cried. My team lead took me outside and bought me an ice cream cone. We figured it out. You're doing fine. Get some ice cream. Talk to people who do this. It's part of the game. If you find that your learning is faster and/or more fun with other people, by all means look into a bootcamp. We'd be lucky to have you.
Jonathan Eyler-Werve
some people get data structures right away, others do not. Probably the biggest help and the biggest hindrance is visualization. In the case of lists and arrays, when you take a data structure class visualization will help you ... initially. When you get into red-black trees n-leaf trees and heaps and other oddities it can severely hinder you. Still I say take a class on data structures or get a book that has a decent set of drawings for every data type. Start there. Bootcamp is good, but you are always rushed in the bootcamps. If you don't get it fast, you start falling behind and wham you're overwhelmed.
Jeffry Brickley
It takes time to wrap your head around data structures. A lot of people flunk data structures in Computer Science classes. Data structures iz hard It helps if you simulate data structures with real life objects. For example, think of objects as eggs. Think of references as a real life string that attaches itself to to an egg. THink of an array as an egg carton. Think of a linked list as a series of paper cups linked to each other by string and arranged in a line.
Jayesh Lalwani
Related Q & A:
- How can we get SBJSON connectionDidFinishLoading method inside array data in another class?Best solution by stackoverflow.com
- Why can't I see my friends list?Best solution by Yahoo! Answers
- Why can't I add friends to my Messenger list?Best solution by Yahoo! Answers
- Can't delete name off messenger address list, error code 40402,need help pls?Best solution by Yahoo! Answers
- Why can't I access my contact list?
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.