Skip to content

Commit 0b91457

Browse files
Exercise 34,35,36
1 parent 9026aa7 commit 0b91457

File tree

3 files changed

+129
-0
lines changed

3 files changed

+129
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@
5050
- <a href="https://github.com/AvraamMavridis/FE-questions-answers/blob/master/exercises/exercise31.md">31. Move all instances of a value in an array at the end of the array</a>
5151
- <a href="https://github.com/AvraamMavridis/FE-questions-answers/blob/master/exercises/exercise32.md">32. Sort a linked list</a>
5252
- <a href="https://github.com/AvraamMavridis/FE-questions-answers/blob/master/exercises/exercise33.md">33. Circle in linked list</a>
53+
- <a href="https://github.com/AvraamMavridis/FE-questions-answers/blob/master/exercises/exercise34.md">34. Verify that a binary tree is a binary search tree.</a>
54+
- <a href="https://github.com/AvraamMavridis/FE-questions-answers/blob/master/exercises/exercise35.md">35. Implement a Stack using two Queues..</a>
55+
- <a href="https://github.com/AvraamMavridis/FE-questions-answers/blob/master/exercises/exercise36.md">36. Fibonacci recursive, recursive with memoization, and iterative..</a>
5356

5457
<a href="https://github.com/AvraamMavridis/FE-questions-answers/blob/master/exerciseUtils.md">Various Utils helpful to generate test data</a>
5558

exercises/exercise35.md

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
## Exercise
2+
3+
Implement a Stack using two Queues.
4+
5+
## Solution
6+
7+
```ts
8+
class Queue {
9+
_queue: Array<number>
10+
11+
constructor(){
12+
this._queue = [];
13+
}
14+
15+
enqueue(value: number){
16+
this._queue.push(value)
17+
}
18+
19+
dequeue(){
20+
return this._queue.shift();
21+
}
22+
23+
getSize(){
24+
return this._queue.length;
25+
}
26+
}
27+
28+
29+
class Stack {
30+
qu1: Queue;
31+
qu2: Queue;
32+
33+
constructor() {
34+
this.qu1 = new Queue();
35+
this.qu2 = new Queue();
36+
}
37+
38+
push(value: number){
39+
this.qu1.enqueue(value);
40+
}
41+
42+
pop(){
43+
let value = undefined;
44+
while(this.qu1.getSize() > 1){
45+
this.qu2.enqueue(this.qu1.dequeue())
46+
}
47+
48+
value = this.qu1.dequeue();
49+
50+
while(this.qu2.getSize()){
51+
this.qu1.enqueue(this.qu2.dequeue())
52+
}
53+
54+
return value;
55+
}
56+
}
57+
58+
const s = new Stack();
59+
60+
s.push(10);
61+
s.push(30);
62+
s.push(50);
63+
console.assert(s.pop() === 50, 'Wrong implementation');
64+
65+
s.push(40);
66+
s.push(90);
67+
console.log(s.pop() === 90, 'Wrong implementation');
68+
```

exercises/exercise36.md

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
## Exercise
2+
3+
Fibonacci recursive, recursive with memoization, and iterative
4+
5+
## Solution
6+
7+
```ts
8+
/**
9+
* Recursive
10+
* @param {number} n
11+
*/
12+
const fbn = function(n: number) {
13+
if (n === 0) return 0;
14+
if (n === 1) return 1;
15+
return fbn(n - 1) + fbn(n - 2);
16+
};
17+
18+
/**
19+
* Recursive with memoization
20+
*
21+
* @param {number} n
22+
* @returns {number}
23+
*/
24+
const fbnMemo = function(n: number) {
25+
const memo = {};
26+
27+
const fbnM = function(n) {
28+
if (n === 0) return 0;
29+
if (n === 1) return 1;
30+
if (memo[`${n}`]) return memo[`${n}`];
31+
32+
memo[`${n}`] = fbnM(n - 1) + fbnM(n - 2);
33+
return memo[`${n}`];
34+
};
35+
36+
return fbnM(n);
37+
};
38+
39+
/**
40+
* Recursive Iterative
41+
*
42+
* @param {number} n
43+
* @returns {number}
44+
*/
45+
const fbnIt = function(n: number) {
46+
let vals = [0, 1];
47+
if (n === 0) return vals[0];
48+
if (n === 1) return vals[1];
49+
50+
for (let i = 0; i < n - 1; i++) {
51+
[vals[0], vals[1]] = [vals[1], vals[0] + vals[1]];
52+
}
53+
54+
return vals[1];
55+
};
56+
57+
console.assert(fbn(10) === fbnM(10) === fbnIt(10), "Wrong Implementation");
58+
```

0 commit comments

Comments
 (0)