This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import copy | |
class Item: | |
"""Classe que representa um item da mochila.""" | |
def __init__(self, valor, tamanho): | |
self.valor = valor | |
self.tamanho = tamanho |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cálculo de distâncias e vetores | |
import numpy as np | |
# Traçagem de gráficos | |
import matplotlib.pyplot as plt | |
from matplotlib.lines import Line2D | |
# Carregar e lidar com o dataset | |
import pandas as pd | |
from sklearn.datasets import load_iris |