GithubHelp home page GithubHelp logo

fem-algos's Issues

Confusing implementation in "Implementing a Queue"

First of all, this is a great course (still working through it...).

One thing that really tripped me off is the Queue.enque() method:

type Node<T> = {
    value: T;
    next?: Node<T>;
}

export default class Queue<T> {
    public length: number;
    private head?: Node<T>;
    private tail?: Node<T>;

    constructor() {
        this.head = this.tail = undefined;
        this.length = 0;
    }

    enqueue(item: T): void {
        const newNode = {value: item} as Node<T>;
        this.length++;
        if (!this.tail) {
            this.tail = this.head = newNode;
            return;
        }
        this.tail.next = newNode;
        this.tail = newNode;        
    }

    deque(): T | undefined {
        if (!this.head) {
            return undefined;
        }
        this.length--;

        const head = this.head;
        this.head = this.head.next;

        if (this.length === 0) {
            this.tail = undefined;
        }

        return head.value;
    }
    peek(): T | undefined {
        return this.head?.value;
    }   
}   

The confusing part is these two lines:

this.tail.next = newNode;
this.tail = newNode; 

This doesn't have the effect as explained in the video lecture (first point the element at this.tail.next to the new node and then set this.tail to the same node). The second line - this.tail = newNode - has as the effect that this.tail.next is always undefined (upon returning from the method).

But in one very special case, when this.tail and this.head point to the same Node object (the line: this.tail = this.head = newNode; in the if-condition) it does affect the this.head.next.

I still have trouble comprehending this implementation w/o using a debugger. Has someone found a less obscrure implementation?

Binary Search Algo, a bit wrong. (lo < hi) part

In the course @ThePrimeagen you have explained that the while condition should be lo < hi and not lo <= hi .

But it is wrong, this condition will fail for the edge case where the needle happens to be the last element.

Infact, a guy does ask you the question of why it is not lesser than or equal to and you reply saying it is due to the inclusiveness of the lower bound and exclusiveness of the upper bound and this doesn't make any sense, for me at least.

The class link at 4:50

I would have asked it in the discussion section but it has not been enabled for this repo. Please do so, or just share some link to the community groups for this course.

Really appreciate it,
thanks for your service 🫡

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.