• Stars
    star
    1
  • Language
  • Created over 1 year ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

More Repositories

1

Several-examples-using-php

PHP
13
star
2

Sistema-Cadastro-Cursos

Python
12
star
3

Cadastro-DjangoSQLITE

Python
9
star
4

Reserva-aerea-dio

6
star
5

Python-beginners

Several examples for those learning python
Python
5
star
6

PRNGS-in-Python

Python
5
star
7

Django-Petshop

Python
5
star
8

IsadoraFerrao

5
star
9

Black-Scholes-Parallel-

C
4
star
10

Black-Scholes---sequential-and-parallel

C
4
star
11

Eye-talk

Hachathon SheHacksBr
HTML
4
star
12

Sequential-search-and-binary-search

C++
4
star
13

Safe-avionics-architecture

HTML
4
star
14

GRACE-ICMC-USP

4
star
15

Neural-network-adalaine

Python
4
star
16

Dindim-pra-mim

TypeScript
3
star
17

Estacionamernto-python

Python
3
star
18

Smoothing-an-image

MATLAB
3
star
19

Memory-mapping

Python
3
star
20

Checking-automats-and-different-languages

C
3
star
21

Command-Voice

HTML
3
star
22

Scheduling-between-processes

Python
3
star
23

Calculation-of-mean-standard-deviation-and-absolute-deviation

C
3
star
24

Policy-Gradient-using-REINFORCE-Algorithm

Python
3
star
25

Mult-agent

Python
3
star
26

Login-in-Cake-PHP

Shell
3
star
27

GHC2021

HTML
3
star
28

Borwein---sequential-and-parallel

C
3
star
29

Acessibility-button

CSS
3
star
30

Technovation-Challenge

Website for event
CSS
3
star
31

Christimas-WebSite-in-Django

Python
3
star
32

Portfolio

HTML
3
star
33

Extracting-text-from-image

Python
3
star
34

Contrast-for-low-vision

CSS
3
star
35

Monte-Carlo---sequential-and-parallel

C
3
star
36

Virtual-identifier-for-users

CSS
3
star
37

Pop-up-for-website

CSS
3
star
38

Simple-local-storage-and-upload

HTML
3
star
39

Pthreads

C
3
star
40

Basic-examples-for-beginners

3
star
41

Python-lexical-analyzer

Python
3
star
42

Metrics-Security-and-Safety-for-UAVs

HTML
3
star
43

Site-to-publicize-the-programming-marathon

JavaScript
3
star
44

Tech-School-2022

3
star
45

Codeigniter-training

PHP
3
star
46

Website-for-disseminating-the-workshop-proposal

Construction of a website to publicize a workshop for the Grace Hopper Celebration 2020.
JavaScript
3
star
47

SQLIT-conexao

2
star
48

Ultima-aula-pd1022

2
star
49

Java-instructions

Java
2
star
50

Mapping-a-matrix-representing-a-crop

C++
2
star
51

Crud-Codeigniter

PHP
2
star
52

Turing-machine

Development of a Turing Machine, using JFLAP, which recognizes different languages
2
star
53

Digital-circuits

VHDL
2
star
54

Convolutional-Neural-network

VHDL
2
star
55

Election-algorithm-in-the-ring

Python
2
star
56

simple-interest-code

Python
2
star
57

Will-new-version

JavaScript
2
star
58

Growing-Bubble-source

C++
2
star
59

Simple-registration

PHP
2
star
60

Hamburgueria-website

JavaScript
2
star
61

FastAPI

2
star
62

Trainning

Python
2
star
63

Cadastro-de-produtos

Python
2
star
64

Django-to-bennigners

Python
2
star
65

Desafio-python

Python
2
star
66

Eye-tracking

Python
2
star
67

Do-while-Divination

C++
2
star
68

Pipeline

C
2
star
69

Codigos-python

2
star
70

DistanceEuclideanPython

Python
2
star
71

Owasp-s-top-10-semantic-web

Java
2
star
72

Petshop-Django

2
star
73

Estacionamento

Python
2
star
74

Applying-texture-to-a-cube

C
2
star
75

Date-identification-for-sites

PHP
2
star
76

Discipline-of-algorithms-and-programming

C++
2
star
77

Petshop

2
star
78

Splay-tree

/ * Work 2 - v1: BST for categories of products. Implement a BST to catalog product categories from an online store (e.g., Submarino, Amazon). Each category has a code and a name. The code is a sequential number. For each category there is a set of products (e.g., 5000 different smartphones). Each product is identified by a code, a name, a manufacturer, model, launch year and price. Each product category must be represented, also, as a BST. In other words, the category tree node value will point to a BST that contains the products of the respective category. The input file, for loading the BSTs, is a CSV file. The default CSV separator is a semicolon (;). However, the user must be able to define any separator for each CSV file, such as "#" and "@". Example input CSV file: Laptop; 12345; Lenovo; 12346; IBM; Model X51; 2014; 1200.00 Laptop; 12347; Latitude; 12348; Dell; Model 21; 2015; 1811.00 Tablet; 12349; iPad; 12350; Apple; II; 2014; 2200.00 Smartphone; 12351; iPhone; 12352; Apple; V; 2014; 3200.00 Scripts to generate input files of any size: Code sample: generation of categories and products Archive Example input file with 200 categories and 300 products per category: Assignment 1: example CSV file (200 categories with 300 products each) Implement the following functions for BSTs: - put (insert new element in the tree) - get (return a pointer to the tree node that contains the searched key) - delete (delete an element from the tree) - contains (check whether the tree contains an X key or not) - size (return the size of a tree, i.e., number of elements below the X key) - min (return the lowest value key) - max (return the key with the highest value) - rank (return the number of elements whose key is less than key X) - height (return the height of the tree) - floor (return the smallest element closest to the X key) - ceiling (return the largest element closest to the X key) - inorder traversal (browse the tree in "inorder" order, i.e., list tree elements in ascending order) What to deliver: a complete version of the work. In other words, the first version of all of the above functions. The user must be able to choose the function through a program execution parameter. Here is the format of the input parameters: put: -p <input_put.csv> get: -g <entrada_get.csv> delete: -d <input_delete.csv> contains: -c <entry_contains.csv> size: -s (prints the size of all trees) min: -m (print the minimum of all trees) max: -M (return the key with the highest value) rank: -R <rank.csv> height: -H (return the height of all trees) floor: -F <entrada_floor.csv> ceiling: -C <entrada_ceiling.csv> opts_sequence: -S <operations_execution_string. example: pgdcM> inorder traversal: -i (browse all trees in "inorder" order, i.e., list tree elements in ascending order) File format entrada_get.csv, entrada_delete.csv, entrada_contains.csv, entrada_rank.csv, entrada_floor.csv, entrada_ceiling.csv: A list containing one "type" and one "key" per line. The type (category or product) and the key are separated by ";". In the case of product, the line contains the category and product information. So there are two types of lines. Lines that only identify one category and lines that identify a category and a product. Example of the contents of the files entrada_contains.csv, entrada_delete.csv, entrada_contains.csv, entrada_rank.csv, entrada_floor.csv, entrada_ceiling.csv: category; 12345 category; 12345; product; 12346 category; 12349 category; 12351 category; 12351; product; 12352 category; 12351; product; 12354 category; 12359; product; 12355 category; 12359; product; 12399 category; 12359; product; 12101 category; 12366 category; 12377 category; 12359; product; 12203
C
2
star
79

Ascending-order

C++
1
star
80

Restoring-an-image

MATLAB
1
star
81

Seu-Madruga-s-Tamagotchi

C++
1
star
82

Adding-and-deleting-vehicles-Final

Java
1
star
83

Applying-the-while-statement

C++
1
star
84

Initial-proposal-for-a-bus-application

Tchê bus - Android Studio
Java
1
star
85

Reposit-rio-Ultima

Python
1
star
86

Gaus---sequential-and-parallel

C
1
star
87

Convolution-in-all-pixels

Python
1
star
88

Examples-of-using-vectors

C++
1
star
89

Bank-account

Java
1
star
90

Website-for-sending-literary-poems

CSS
1
star
91

prj_petshop

JavaScript
1
star
92

POO-python_WoMakersCode

Python
1
star
93

Capital-letter-counter

C++
1
star
94

Monte_Carlo

C
1
star
95

Median-of-an-image

MATLAB
1
star
96

Top-10-OWASP-web-vulnerabilities

Registration and login system with OWASP's top 10 vulnerabilities
TSQL
1
star
97

Connection-to-sqlite-with-python

Python
1
star
98

Second-degree-equation

C++
1
star
99

Time-capture

C
1
star
100

Pentesting

1
star