Code Monkey home page Code Monkey logo

ds-algo_implementations's Introduction

πŸ₯·πŸ»Chandan Dwivedi

GIF

AI Engineer

  • πŸ‘‹ Hi, I’m Chandan Dwivedi
  • πŸ‘€ I’m interested in Artifical Intelligence and Machine Learning
  • 🌱 I’m currently learning Reinforcement Learning
  • πŸ’žοΈ I’m looking to collaborate on ML,Deep Learning, Neural Networks

Need to contact me? Find me here:


Buy Me A Coffee


πŸ§‘πŸΌβ€πŸ’» Languages and Tools I work with:

Python

C++

R

Scala

C

TensorFlow

PyTorch

Pandas

NumPy

Kafka

AWS

Docker

AWS

FastAPI

Flask

NGiNX

OpenCV

Jupyter Notebooks

MxNet

Scikit Learn

ONNX

git

Grafana

JIRA

MySQL

MongoDB

Anaconda

Tableau




πŸ“  My Latest Blogs:

Pahlevikun's blog

πŸ“Š Stats

Chandan Dwivedi's GitHub stats Top Langs


Visitor Count

ds-algo_implementations's People

Contributors

jargon4072 avatar

Watchers

 avatar

ds-algo_implementations's Issues

implement it again after implementing inorder traversal without recursion or stack;


opened via imdone.io from a code comment on 311ccb5a91bf6bb5d1d8940b11f02f47e73ebbdf by Chandan Dwivedi [email protected]


int kthsmallestelementmorris(treenode* root, int value){ //TODO:implement it again after implementing inorder traversal without recursion or stack;
int count=0;
int ksmall=INT_MIN;
treenode* curr=root;
while(curr!=NULL){
if(curr->left==NULL){

try to implement it without pointer

    return 0;                               //i.e. with int height insted of int* height

opened via imdone.io from a code comment on 311ccb5a91bf6bb5d1d8940b11f02f47e73ebbdf by Chandan Dwivedi [email protected]


*height=0; //TODO: try to implement it without pointer
return 0; //i.e. with int height insted of int* height
}
int lh=0,rh=0;
int ldiameter=diameter(root->left,&lh);
int rdiameter=diameter(root->right,&rh);
*height=max(lh,rh)+1;

impelement it with extra node prevnode pointing to the TrieNode which corresponds

bool isleaf;                 //to the last entered character by the user

opened via imdone.io from a code comment on 311ccb5a91bf6bb5d1d8940b11f02f47e73ebbdf by Chandan Dwivedi [email protected]


struct trienode{ //TODO:impelement it with extra node prevnode pointing to the TrieNode which corresponds
bool isleaf; //to the last entered character by the user
trienode* children[50];
list<string> word;
};
trienode* getnode(void){
trienode* new_node=NULL;

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.