Git Product home page Git Product logo

leda-20182's Introduction

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


Detalhes

Todos os roteiros são implementados em Java.

Os que estão em EDA, eu implementei todos do zero.

Roteiros

Roteiro Diretorio
1 Roteiro 1 R01
2 Roteiro 2 R02
3 Roteiro 3 R03
4 Roteiro 4 R04
5 Roteiro 5 R05
6 Roteiro 6 R06
7 Roteiro 7 R07
8 Roteiro 8 R08
9 Roteiro 9 R09
10 Roteiro 10 R10
11 Roteiro 11 R11
12 Roteiro 12 R12
13 Roteiro 13 R13
14 Roteiro 14 R14
15 Roteiro 15 R15
16 Roteiro 16           R16
17 Roteiro 17           R17

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.