ArchitectAK
ArchitectAK
  • Видео 48
  • Просмотров 106 598
Binary Search Tree | Depth First Traversal | Breath First Traversal | Data Structure with JavaScript
Binary Search Tree | Depth First Traversal | Breath First Traversal | Data Structure with JavaScript
A binary search tree is a collection of nodes that are all connected together in a certain way.
Each node in a binary search tree will have up to two child nodes, a left node in the right node, and each node will contain some data or a value similar to our linked list.
----- Binary Search Tree
ruclips.net/video/z1EhQb1XYfQ/видео.html
------ Linked List Data Structure
ruclips.net/video/siEWYf1_vwE/видео.html
---- Data Structures with JavaScript
ruclips.net/video/siEWYf1_vwE/видео.html
------- Fullstack Web Developer Interview Preparation
ruclips.net/video/lYVQUc6QKUM/видео.html
------- Best Resource ...
Просмотров: 256

Видео

Linked List Time Complexity and Practical Use Cases | Data Structures with JavaScript
Просмотров 5893 года назад
Linked List Time Complexity and Practical Use Cases | Data Structures with JavaScript We have now finished implementing our linked list in code, so let's talk about its performance and some practical cases in which we could use linked lists. Other videos on Data Structures with JavaScript What Are Data Structures and Why Are They Important? ruclips.net/video/siEWYf1_vwE/видео.html JavaScript Co...
Big O Notation | Big O Notation in 9 minutes | What is Big O Notation in Data Structure
Просмотров 2683 года назад
Big O Notation | Big O Notation in 9 minutes | What is Big O Notation in Data Structure If the input size gets larger, say, an array of 100 elements instead of an array of 50 elements, - Will the runtime of the function stay the same? - Will the runtime get proportionally larger as the input size increases? - Will the runtime get exponentially larger? - or Will the runtime change in some other ...
How to search in Linked List | Search data inside Linked List | Data Structures with JavaScript
Просмотров 5463 года назад
How to search in Linked List | Search data inside Linked List | Data Structures with JavaScript Other videos on Data Structures with JavaScript What Are Data Structures and Why Are They Important? ruclips.net/video/siEWYf1_vwE/видео.html JavaScript Constructor Function | JavaScript 'this' keyword ruclips.net/video/JwcoZIuofis/видео.html Understanding Prototype Object with Constructor Function r...
JavaScript Interview for Fresh Graduate and Beginners | Fullstack JavaScript Interview
Просмотров 8563 года назад
#javascript #interview #techtalks JavaScript Interview for Fresh Graduate and Beginners | Fullstack JavaScript Interview Questions Covered in this video What is JavaScript? What are the primitive types in JavaScript? What's the difference between undefined and null in JavaScript? What does the Logical AND (&&) operator do? What does the Logical OR (||) operator do? What is the fastest way of co...
Linked List Remove Head Node | Linked List Remove Tail Node | Data Structures with JavaScript
Просмотров 7853 года назад
Linked List Remove Head Node | Linked List Remove Tail Node | Data Structures with JavaScript Other videos on Data Structures with JavaScript What Are Data Structures and Why Are They Important? ruclips.net/video/siEWYf1_vwE/видео.html JavaScript Constructor Function | JavaScript 'this' keyword ruclips.net/video/JwcoZIuofis/видео.html Understanding Prototype Object with Constructor Function ruc...
How to add node to Linked List | Adding Node to Linked List Tail | Data Structures with JavaScript
Просмотров 3773 года назад
How to add node to Linked List | Adding Node to Linked List Tail | Data Structures with JavaScript We are going to want to be able to - add a node to the head of our linked list - add a node to the tail of our linked list, - remove the head node to retrieve its data and - remove the tail node to retrieve its data. We are also going to want to be able to search our linked list to see if a certai...
How to add node to Linked List | Adding Node to Linked List Head | Data Structures with JavaScript
Просмотров 4363 года назад
How to add node to Linked List | Adding Node to Linked List Head | Data Structures with JavaScript We are going to want to be able to - add a node to the head of our linked list - add a node to the tail of our linked list, - remove the head node to retrieve its data and - remove the tail node to retrieve its data. We are also going to want to be able to search our linked list to see if a certai...
What is Linked List | Linked List and Node Constructor Function | Data Structures with JavaScript
Просмотров 7663 года назад
What is Linked List | Linked List and Node Constructor Function | Data Structures with JavaScript Linked List a list of elements called nodes that are connected together or linked together in a single file line. There are two types of linked lists, a singly linked list and a doubly linked list. In a singly linked list, each node only has reference to the node after it or the next node. In a dou...
Understanding Prototype Object with Constructor Function | Data Structures With JavaScript
Просмотров 3693 года назад
Understanding Prototype Object with Constructor Function | Data Structures With JavaScript The prototype object is simply an object that multiple other objects can refer to to get any information or functionality that they need. Other videos on Data Structures with JavaScript What Are Data Structures and Why Are They Important? ruclips.net/video/siEWYf1_vwE/видео.html JavaScript Constructor Fun...
JavaScript Constructor Function | JavaScript 'this' keyword | Data Structures With JavaScript
Просмотров 3263 года назад
JavaScript Constructor Function | JavaScript 'this' keyword | Data Structures With JavaScript A constructor function is simply a function that creates an object class and allows you to create multiple instances of that class very easily. When a function is used as a constructor (with the new keyword), its this is bound to the new object being constructed. Lets learn Constructor Function and thi...
What Are Data Structures and Why Are They Important ? | Data Structures With JavaScript
Просмотров 3013 года назад
What Are Data Structures and Why Are They Important ? | Data Structures With JavaScript Data Structures are very simply a way of organizing the data that is stored in a computer or in a database. There are multiple different types of data structures and each type of data structure represents a different way of organizing the data that is stored. #DataStructures #JavaScript #TechTalksWithAK Othe...
Top 100 JavaScript Questions and Answers 2021 - Part 5 | Functional Programming Interview Questions
Просмотров 4153 года назад
Top 100 JavaScript Questions and Answers 2021 - Part 5 | Functional Programming Interview Questions This is the fifth part of the "Top 100 JavaScript Questions and Answers in 2021". It is mostly focused on "Functional Programming Interview Questions and Answers" This video explains the following topics in detail. - Generators - Statements and Declarations - Functions and Prototypes - Functional...
Top 100 JavaScript Questions and Answers 2021 - Part 4 | ES6 Questions and Answers
Просмотров 4613 года назад
Top 100 JavaScript Questions and Answers 2021 - Part 4 | ES6 Questions and Answers This is the fourth part of the "Top 100 JavaScript Questions and Answers in 2021". It is mostly focused on "ES6 Interview Questions and Answers" This video explain following topics in detail. - ES6 Modules - Named and Default Exports - Rest Operator - Spread Operator - Default Parameters - Wrapper Objects - Set O...
Top 100 JavaScript Questions and Answers 2021 - Part 3 | ES6 Questions and Answers
Просмотров 7093 года назад
Top 100 JavaScript Questions and Answers in 2021 - Part 3 | ES6 Questions and Answers. This is the third part of the "Top 100 JavaScript Questions and Answers in 2021". It is mostly focused on "ES6 Interview Questions and Answers" This video explain following topics in detail. - Hoisting - Function Scope vs Block Scope - var vs let vs const keywords in JavaScript - Arrow functions - Classes - T...
Top 100 JavaScript Questions and Answers 2021 - Part 2
Просмотров 9053 года назад
Top 100 JavaScript Questions and Answers 2021 - Part 2
Flutter Container Widget | Flutter Widgets Explained 2021
Просмотров 4583 года назад
Flutter Container Widget | Flutter Widgets Explained 2021
Top 100 JavaScript Questions and Answers 2021- Part 1
Просмотров 2,7 тыс.3 года назад
Top 100 JavaScript Questions and Answers 2021- Part 1
AppBar | FloatingActionButton (FAB) | BottomNavigationBar | Flutter Widgets Explained 2021
Просмотров 3093 года назад
AppBar | FloatingActionButton (FAB) | BottomNavigationBar | Flutter Widgets Explained 2021
MaterialApp Widget | Scaffold Widget | Flutter Widgets Explained 2021
Просмотров 2283 года назад
MaterialApp Widget | Scaffold Widget | Flutter Widgets Explained 2021
Flutter Widgets | Widget role in Flutter App | Flutter Widget Tree | Flutter Widgets Explained 2021
Просмотров 7413 года назад
Flutter Widgets | Widget role in Flutter App | Flutter Widget Tree | Flutter Widgets Explained 2021
Ultimate Guide for Web Developers 2021 | How to Become a Web Developer in 2021
Просмотров 4313 года назад
Ultimate Guide for Web Developers 2021 | How to Become a Web Developer in 2021
How to write first Dart Program in 2021 | Most important concepts about Dart language 2021
Просмотров 1843 года назад
How to write first Dart Program in 2021 | Most important concepts about Dart language 2021
Dart SDK 2021 | Dart Libraries, Tools, Dart VM, Dart Compiler to JS | Dart Features
Просмотров 1,1 тыс.3 года назад
Dart SDK 2021 | Dart Libraries, Tools, Dart VM, Dart Compiler to JS | Dart Features
Parallel Testing using PyTest, Appium & Python | Parallel Test Execution in 2021
Просмотров 8 тыс.3 года назад
Parallel Testing using PyTest, Appium & Python | Parallel Test Execution in 2021
What is Dart | Why Flutter uses Dart | How Dart enable fast development | Dart Tutorial 2021
Просмотров 1,3 тыс.3 года назад
What is Dart | Why Flutter uses Dart | How Dart enable fast development | Dart Tutorial 2021
Flutter Project's folder structure 2021 | Flutter File Structure 2021 | Flutter Tutorial 2021
Просмотров 1,5 тыс.3 года назад
Flutter Project's folder structure 2021 | Flutter File Structure 2021 | Flutter Tutorial 2021
Ultimate Flutter Setup in 2021 | First flutter app | How hot reload works in Flutter
Просмотров 3173 года назад
Ultimate Flutter Setup in 2021 | First flutter app | How hot reload works in Flutter
What is Flutter, Why Flutter and things we all must know about Flutter
Просмотров 2,5 тыс.3 года назад
What is Flutter, Why Flutter and things we all must know about Flutter
Welcome to Tech Talks | Channel Description | Ambitious YouTube Channel
Просмотров 3023 года назад
Welcome to Tech Talks | Channel Description | Ambitious RUclips Channel

Комментарии

  • @hilgo_velomobile
    @hilgo_velomobile 2 месяца назад

    Excellent! Thanks for your help!

  • @vaibhavgupta174
    @vaibhavgupta174 3 месяца назад

    what if we dont have app installed and we have link then it should go to app store or play store.

  • @HarshitRaj-r1b
    @HarshitRaj-r1b 5 месяцев назад

    What will happen if app is not install??

  • @mahmudmadura8133
    @mahmudmadura8133 7 месяцев назад

    Does it work for real device? I try with real multiple device but, just 1 device run

  • @brotherlofi
    @brotherlofi 8 месяцев назад

    I imagined this is how to do it. I do the zoom in separately, and was thinking of how to actually do it while using QuickTime recorded when I get home to test it. Thanks

  • @imonseafooddiet
    @imonseafooddiet 9 месяцев назад

    My android studio don’t have ‘create new flutter project’ button.😢

  • @mannoplanet
    @mannoplanet 9 месяцев назад

    thanks - exactly what I was looking for.

  • @musapatnekar
    @musapatnekar 11 месяцев назад

    The execution time for single thread is 19 seconds and for two threads is 69 seconds. why time is more for 2 threads? isn't it defeating the purpose of parallel execution? correct me if I am missing something.

  • @mutlucagliyan4865
    @mutlucagliyan4865 11 месяцев назад

    One of the best 1,5 minutes spent on web. Thanks

  • @bansiparmar3879
    @bansiparmar3879 Год назад

    hey can you guide me how to share deep link url in social networks and redirect to our app..??

  • @mattheworourke34
    @mattheworourke34 Год назад

    boom! thank you! Clear and too the point - my kind of youtube video.

  • @GoodNight-j1u
    @GoodNight-j1u Год назад

    how did you open 2 devices at android studio ?!

  • @eugenezudin6881
    @eugenezudin6881 Год назад

    HI!!! Thanks a lot. What about appium + Selenium Grid video which you promised?

  • @danielbd4883
    @danielbd4883 Год назад

    how can i use a qr code contaning the link to open a app?

    • @ArchitecttAK
      @ArchitecttAK Год назад

      You might need to code QR code reader in your app. Or else use any other QR code reader that opens deepllink from WR code in browser, then browser will redirect to your app.

  • @husler7424
    @husler7424 Год назад

    Can you please make a video on React-Native specific VS code setup?

    • @ArchitecttAK
      @ArchitecttAK Год назад

      Sure, I was away since a while from RUclips, I will resume uploading content soon.

  • @TarunSharma-po5ix
    @TarunSharma-po5ix Год назад

    What if app is not installed will it redirect to content after installing the app?

  • @queenofkingsbury
    @queenofkingsbury Год назад

    Hi, Are the parentheses necessary around the numbers that indicate the time of the video?

  • @venkateshparanthaman2470
    @venkateshparanthaman2470 Год назад

    Hi Bro, How to open a react native android app from external apps. Need to open an app from Whatsapp chat or Instagram chat. Eg: If i share this link to someone on whatsapp. They should open my app just by clicking. I have done this on iOS. Please reply..

    • @ArchitecttAK
      @ArchitecttAK Год назад

      It can be opened using deeplink. Please read more about it here reactnative.dev/docs/linking

    • @venkateshparanthaman2470
      @venkateshparanthaman2470 Год назад

      @@ArchitecttAK I have tried that it is not working bro

    • @venkateshparanthaman2470
      @venkateshparanthaman2470 Год назад

      @@ArchitecttAK There are two options one is with http or https and other one is with say for eg: clicking on this link androidapp:// from WhatsApp or any messaging app should open my app in android devices

  • @magneat
    @magneat 2 года назад

    Wait... 1 thread is 19 seconds, and 2 threads is 69 seconds? wtf? isn't it faster to run 1 by 1 to make it faster than parallel running?)))

  • @kunnudev7250
    @kunnudev7250 2 года назад

    great job bro plz make more videos like these awesome

  • @SumitKumar-od3kt
    @SumitKumar-od3kt 2 года назад

    How to navigate on touch of notifications in kill state to specify screen ?

  • @FCeleste
    @FCeleste 2 года назад

    nice video and excellent didactic. you only forgot of show how get the id in react native profile component but the github repo helps with that. thanks for the tutorial. stills works 2022

  • @ahmedmamdouh523
    @ahmedmamdouh523 2 года назад

    good job you saved my ass. I was going crazy about deep linking and your video saved me.

  • @fatmacan5904
    @fatmacan5904 2 года назад

    Github files have been deleted. Can you update it?

  • @ishanmakeshappy5839
    @ishanmakeshappy5839 2 года назад

    I Think you need to add your git project link here.

  • @gyros9162
    @gyros9162 2 года назад

    thank you bro

  • @CamiloBuitrago19
    @CamiloBuitrago19 2 года назад

    Awesome video mate. thank you so much

  • @narekmusakhanyan523
    @narekmusakhanyan523 2 года назад

    thank you, very practical and useful

  • @deepakagrawal4989
    @deepakagrawal4989 2 года назад

    Thanks you sir. This video is very helpfull to me.

  • @8creators
    @8creators 2 года назад

    Hidden Gem! I'll share to group for more followers

  • @8creators
    @8creators 2 года назад

    Keep it up bro! Bahut achhe se explain Kiya

  • @NoOne-zl4qb
    @NoOne-zl4qb 2 года назад

    Thanks, you are great.

  • @felipebarrera8240
    @felipebarrera8240 2 года назад

    so you are running two test in parallel from one appium server i didnt know that was posible.. i thought that you need to have one server for each device iwth diferent ports

  • @neerajkalrasuffescom1824
    @neerajkalrasuffescom1824 2 года назад

    thanks sir, great video. but how can we open application via browser. my app is getting opened though commands like you described in video but not getting opened through browser, can you please make video on that

    • @shravanbhuyar6276
      @shravanbhuyar6276 2 года назад

      I am also having the same issue. Did you find any solution?

  • @vijaydadhich3358
    @vijaydadhich3358 2 года назад

    What code you wrote on the profile screen to get the query string?

    • @ArchitecttAK
      @ArchitecttAK 2 года назад

      All code is available on GitHub repo. Link is in description.

  • @dumitrubuda1869
    @dumitrubuda1869 2 года назад

    is it possible to use other data field then message(body) to get the deep link from? So it won't be displayed in the message?

    • @ArchitecttAK
      @ArchitecttAK 2 года назад

      Deeplink can be received from any link irrespective of where that link is present.

  • @dawateislami1692
    @dawateislami1692 2 года назад

    Bhot nice 1 month kh bad aj samja ai hy clear kr kh

  • @avikunj7834
    @avikunj7834 2 года назад

    Thank you so much sir. Your video is of great help.

  • @bhawnaverma3160
    @bhawnaverma3160 2 года назад

    Thank you much more for the wonderful content.

  • @mariacamilamontealegremerc5892
    @mariacamilamontealegremerc5892 2 года назад

    Hi, I think this is a very important topic, but I couldn't understand well what you said. I would like if you could create a new video, maybe trying to vocalize better, and better sound quality, as it was very hard for me to understand what you were saying. Maybe also for your accent.THIS WOULD BE AMZING. THANK YOU SO MUCH!

  • @rakeshpangil7834
    @rakeshpangil7834 2 года назад

    how to run this in real device

  • @mehraritvik
    @mehraritvik 2 года назад

    thx

  • @zerocole26
    @zerocole26 2 года назад

    Does this works on Android?

    • @ArchitecttAK
      @ArchitecttAK 2 года назад

      I am not sure if it still works on android or not, but it worked in the video. Isn’t it?

  • @meeratechsolution1132
    @meeratechsolution1132 2 года назад

    You r so nyc guy to make in hindi lan so happy to see your video sir

  • @ayush_katuwal
    @ayush_katuwal 2 года назад

    Wow!! thanks for such great video bro, have been wondering to do this from long time....you saved my day😊

  • @NewtechnologyonDEMAND
    @NewtechnologyonDEMAND 2 года назад

    You are working hard and nice video but can you provide react native video playlist it will be popular and help all

  • @hosseinforooghy8622
    @hosseinforooghy8622 2 года назад

    hi bro ... when I do this I can open deep link with nix in terminal But if I try in safari and write my deep link it just open my app and does not go to specific page that I want is it possible to help me pls

  • @TRADER7465
    @TRADER7465 2 года назад

    vai your sound quality is not good

    • @ArchitecttAK
      @ArchitecttAK 2 года назад

      This video was recorded at beginning of the channel. I released video quality was not so good, so I made good quality videos going forward. I am sorry for I haven’t created an video again.

  • @CodtachiYoutube
    @CodtachiYoutube 2 года назад

    Superb ✌️✌️

  • @VKSGAUTAM12
    @VKSGAUTAM12 2 года назад

    how to use this with react-native-navigation