Coder Social home page Coder Social logo

richecr / leda-20182 Goto Github PK

View Code? Open in Web Editor NEW
1.0 0.0 0.0 5.3 MB

Repositório dos roteiros da disciplina de Laboratório de Estrutura de Dados

Java 37.61% HTML 0.08% JavaScript 60.98% CSS 1.33%
estrutura-de-dados insertion-sort selection-sort bubble-sort generics-algoritms counting-sort heap-algorithm bst tree-structure avl-tree

leda-20182's Introduction

💫 About Me:

🔭 I'm currently working as a Software Engineer II at @olxbr
📚 I am a graduate of the Computer Science course at UFCG.
📚 I'm doing an MBA in Full Cycle Architecture.
🌱 I like to study everything that involves programming, mainly web development, functional programming, software engineering and machine learning.

My Page

🌐 Socials:

LinkedIn Discord Instagram

💻 Tech Stack:

Python Kotlin Java JavaScript Clojure Go TypeScript CSS3 GraphQL HTML5 Markdown AWS Cloudflare GithubPages Heroku Netlify OpenStack Express.js Expo FastAPI NPM NodeJS Spring Vue.js React Nginx AmazonDynamoDB Redis SQLite ElasticSearch KIBANA Kubernetes GRAFANA NEWRELIC VAULT PROMETHEUS Docker ESLint ElasticSearch Gradle Confluence Jira Kubernetes Prometheus Postman

📊 GitHub Stats:



🏆 GitHub Trophies

✍️ Random Dev Quote

🔝 Top Contributed Repo

😂 Random Dev Meme


leda-20182's People

Contributors

richecr avatar viniciusbds avatar

Stargazers

 avatar

leda-20182's Issues

método search da árvore B com index errado

        int index = 1;

	while (index <= node.size() && element.compareTo(node.getElementAt(index)) > 0) {
		index += 1;
	}
	if (index <= node.size() && element == node.getElementAt(index)) {
		return new BNodePosition<T>(node, index);
	}
	if (node.isLeaf()) {
		return new BNodePosition<T>();
	}
	return search(node.getChildren().get(index), element);

O correto n seria começar com index = 0 ?

link

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.