admin管理员组文章数量:1340360
I have an object with nested object:
let list = {
value: 1,
next: {
value: 2,
next: {
value: 3,
next: {
value: 4,
next: null
}
}
}
};
I need to return all key: value
of list
and I must use recursion. I have tried to push the nested object to the local variable in the function, but it fails in the second iteration because the names are different.
Here is the function:
function printList(list){
let nested = {};
if(list.hasOwnProperty('next')) {
nested = list.next;
printList(nested);
} else {
return nested;
}
}
Is there a way to solve it with recursion?
It should return the value
properties. In this case
1
2
3
4
I have an object with nested object:
let list = {
value: 1,
next: {
value: 2,
next: {
value: 3,
next: {
value: 4,
next: null
}
}
}
};
I need to return all key: value
of list
and I must use recursion. I have tried to push the nested object to the local variable in the function, but it fails in the second iteration because the names are different.
Here is the function:
function printList(list){
let nested = {};
if(list.hasOwnProperty('next')) {
nested = list.next;
printList(nested);
} else {
return nested;
}
}
Is there a way to solve it with recursion?
It should return the value
properties. In this case
1
2
3
4
Share
Improve this question
edited Sep 26, 2019 at 10:57
Robert Hovhannisyan
asked Sep 26, 2019 at 10:52
Robert HovhannisyanRobert Hovhannisyan
3,3616 gold badges24 silver badges50 bronze badges
2
- Well where in the recursive function are you actually printing anything to the output? – Bergi Commented Sep 26, 2019 at 10:58
-
1
You should not check whether the object has a
.next
property, you should check whethernested
isnull
. – Bergi Commented Sep 26, 2019 at 10:59
4 Answers
Reset to default 7You could return an array with the values and get the nested values after a check
function printList({ value, next }) {
return [value, ...(next ? printList(next) : [])]
}
let list = { value: 1, next: { value: 2, next: { value: 3, next: { value: 4, next: null } } } };
console.log(printList(list));
You can create a function which checks to see if next
is defined for a given object, if it is, you can add the value
into an array, along with the rest of the values retrieved from further recursive calls:
const list = {
value: 1,
next: {
value: 2,
next: {
value: 3,
next: {
value: 4,
next: null
}
}
}
};
const get_keys = ({value, next}) =>
next ? [value, ...get_keys(next)] : [value];
console.log(get_keys(list));
Here's a method that attempts to stay close to your own attempt.
let list = {
value: 1,
next: {
value: 2,
next: {
value: 3,
next: {
value: 4,
next: null
}
}
}
};
function printList(list){
if (!list)
return;
console.log(list.value)
if (list.hasOwnProperty('next'))
printList(list.next);
}
printList(list)
var sum = 0;
function printList(list) {
if (list.next) {
sum = sum + list.value;
printList(list.next);
}
if (!list.next) {
sum = sum + list.value;
}
return sum;
}
console.log(printList(list));
本文标签: Return nested object with recursionJavascriptStack Overflow
版权声明:本文标题:Return nested object with recursion - Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743612937a2510304.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论