There are no reviews yet. Be the first to send feedback to the community and the maintainers!
React-Native-Football-Fan-Quiz
All project file: https://mega.nz/file/WNdRkASK#_mtnnGB4oI1THajAU2YupBJZVH-wtHyVG28DSM2f5egPeg-Solitaire-Cpp-With-File-Operations
Peg Solitaire In C++ With File I/O OperationsSkyline-Silhoutte-Implementation-With-Linked-List-and-Array-List-in-Java
Skyline Silhoutte Implementation With Linked List and Array List in JavaPeg-Solitaire-Game-in-Java-with-GUI
Implementation of peg solitaire game in java using java GUI.TransitiveSymmetricAntisymmetricReflexiveRelations
Relation finder in the given input file. ( Transitive, Antisymmetric, Reflexive, Symmetric)Add-Remove-Opetations-On-The-Street-Java
Hackerrank-Java-String-Solutions
Hackerrank Java String Problems and SolutionsImage-Processing-Using-Google-Cloud-Vision-AI-on-Rasperry-Pi
Templated-Class-Hierarchy-For-Container-Class
In this homework, you will write a templated class hierarchy for a simple container class hierarchy.Product-Customer-Relation-Java-Spring
Product and Customer relation impelemented using one to many and many to one relationship.Caesar-Cipher-with-Turing-Machine
Caesar Cipher implementation with Turing Machine, Addition and Subtraction operations.React-Web
Hackerrank-Java-Data-Structures-Solutions
My solutions to Hackerrank Data Structures questions in Java.PegSolitaireinCpp
Peg Solitare Game in C++Printing-a-matrix-getting-inverse-of-a-matrix-find-if-a-matrix-is-orthogonal-or-not-
Printing a matrix to the screen, getting inverse of it ,find whether or not it is orthogonal.Student-Expert-System-in-Prolog
In this part of the homework, you are asked to write a simple expert system in Prolog for scheduling ofclasses.In your expert system, you will have rooms, courses and people.Java-Spring-Simple-Crud-Operations
lubimi
Flight-Predictor-Program-In-Prolog
CSE 341 PROGRAMMING LANGUAGESIn the graph below you see the possible flights between some of the cities in Turkey. Write the predicate βroute(X,Y,C) βa route between X and Y existswith cost Cβ that checksif there is a route between any given two cities.Line-slope-finder-according-to-user-input
The program should have a struct called βlineβ. β’ βlineβ struct should keep 7 float variables. The first 6 variables are for the 3 different points on a line: (x1, y1), (x2, y2) and (x3, y3). The last value is the slope of the line. A line is defined as y = m*x+b where m is called the slope. β’ User enters x1, y1, x2, y2 and x3. The program keeps these values in a line struct. It should also calculate both slope and y coordinate of the third point (y3) and fill their values in the struct. Furthermore, the program prints these two calculated valuesLibrary-Book-Searching-System-In-C-Book-Adding-Listing-
You should write a small library and a program in C programming language. β’ The library should use a struct called βBookβ. This struct should keep three strings (for title, author and subject of a book), and an integer (for identification and publication year of a book). β’ The program should keep these records for books in a struct array named Books that is allocated dynamically. β’ If the array is full, increase the size of the array so you can add new books. β’ The program will have a menu as shown in Figure 1. You should design the menus as shown in the figure. β’ If the user entered an invalid option, print the message "TRY AGAIN" on the screen, and let them return to the menu again. The program continues until the user select "EXIT" option. If the user chooses the "EXIT SUBMENU" option while in the submenu, it is routed back to the main menu. β’ Figure 2 shows how the user adds a new book. β’ If the user selects the 2nd option in the Main menu, the user is routed to the submenu.Eight-Puzzle-Klotkski-Peg-Soliatire-Games-in-Cpp
In this homework, you will writean abstract base class BoardGame2D. Thisclass will have at least the following functionssome of which might be pure virtual functions.Merging-of-two-array-and-linked-list-as-a-single-linked-list-as-interleaved-too-
In this lab, you are going to construct a node structure named datatype containing an integer, a float, and a char array with size 10. And also you are not allowed to use libraries other than stdio.h, stdlib.h (as stated before, still, you can not use realloc, malloc, and free.) and string.h.Palindrome-Controller-and-Recursive-Array-Finder
Write a function that checks if a given array is a palindrome.Write a function that checks if an input number is in the given array and return 1 if so and 0 otherwise.Searching-an-element-of-a-linked-list-Recursively-print-Adding-an-integer-and-sorting
In this lab, you are going to construct a node structure named node containing an integer variable, a float variable, and a char pointer. You will use stdio.h, stdlib.h, stdbool.h and string.h. You can see code template in Lab11.c. You fill empty functions. You are not allowed change function names and parameters.You will run main function to test, not need additional test conditions in main function.DayofYear-and-DayofYearSet-Implementation-in-Java
DayofYearSet is a Java class to represent a set of DayOfYear objects (in Turkish DayOfYear kΓΌmesi). This class has the following methods and features as well as any other methods that you think are necessaryPeg-Solitaire-in-Unity-with-Sound-Support
Line-slope-finder-according-to-user-input-in-c-and-find-the-third-entered-coordinates
The program should have a struct called βlineβ. β’ βlineβ struct should keep 7 float variables. The first 6 variables are for the 3 different points on a line: (x1, y1), (x2, y2) and (x3, y3). The last value is the slope of the line. A line is defined as y = m*x+b where m is called the slope. β’ User enters x1, y1, x2, y2 and x3. The program keeps these values in a line struct. It should also calculate both slope and y coordinate of the third point (y3) and fill their values in the struct. Furthermore, the program prints these two calculated values.Writing-and-reading-a-record-from-a-file-as-a-linked-list-in-c
Write a complete program which performs the operations that explatined below. The program should have a menu as following:Enter new record: In this part, user gives several inputs about a country. The program all the data in a dynamically allocated struct array. This array should be reallocated everytime user enters a record. The struct should have the following variables: - char *country - char *capital - int population - bool driving_side (True indicates right side and False indicates left side).Write to the file: In this part, the program creates a .txt file and saves all elements of the struct array in this file. Every element of the array should be written as a line (use white space to separate the variables of the struct). When all of the entries are written, the file should be closed. The entries of the .txt file should look as below. You can name the .txt file yourself.Read from the file: This part should create a linked list. Each list element has the same 4 variables of the struct in Part 2 (as expected, it should also point the next element of the list). Once the list is initialized, the program should reopen the .txt file, then it should read and save the information to the linked list. Every line in the .txt file forms an element of the linked list. The file should be closed at the end of this part. 4. Print the linked list: In this part, the program should print the linked list that has been created in part 3. The output should be as following:PolynomialWriter
Writes the polynomial in a pretty format.(3 and 4 degree polynomials)PrimeNumbersBetweenTwoGivenNumber
Finding the prime number between two given number.PerfectHarmonicNaturalNumberFinderinC
Perfect- Harmonic Divisor -Natural -Perfect Number finder in CEuclidianDistance4D
Euclidian Distance of N 4D vectorsSimple-Class-Identifier-of-Given-Dots-in-C
Classifying the given dots have x and y coordinates with determining a line between them.Binary-Heap-Implementatiton-Extending-Binary-Tree-Class
Binary Heap Node Structure Implementatiton Extending Binary Tree Classweatherapi
Weather Rest Api for openweathermapPolynomialPrettyFormatWriterinC
Writing the polynomial in pretty format in CDhontMethod
Applying Dhont Election Method in Chouse-hunter-fe
House Hunter: ultimate real estate platform with React and Spring Boothouse-hunter-be
House Hunter: ultimate real estate platform with React and Spring BootBankService
NumberPuzzleinC
Implementing number puzzle game in CArmstrongandPalindromeinC
Find whether a given number is Armstrong or Palindrome number.TransactionRestApi
Transaction REST API with CRUD operations in Spring Boot.NumberSeperatorAccordingtoGivenCondition
Number Seperator(Making Chunks) Program in C according to Given ConditionNewickTree
According to given input file, creating it's corresponding newick tree format in cAntonymSynonyminC
In this homework, you will implement a word learning program for English as a Second Language learners in C programming language using dynamic lists and binary files.ImdbMovieSorting
Sorting given movies in input.txt according to genre,year and imdb score in C.IslandFinderUsingDfsAlgorithm
With using DFS algorithm, we find the islands according to condition in the pdf file on the given square matrix grid.TowerOfHanoiInC
Implemantation of tower of hanoi in CFoodOrderSystem
Java Food Order System ImplementationMazeMoveinC
Recursive function that finds a path in a randomly given maze.DynamicGraphImplemantationwithDijkstra-sAlgorithmJava
Dynamic Graph Implemantation with Dijkstraβs AlgorithmBinary-Search-Tree-Implementation-Using-Search-Tree-Interface
Binary Search Tree Implementation Using Search Tree Interface in JavaSpellCheckerinC
Impelementing a spell checker which changes wrong spelled words with true ones given in the input file.DeleteGivenWordsinaFileinC
A program which delete the given words in a txt file and write the result to another txt file.DayCounterinC
Counting the dates between given two dates and find the day of the any given date.HW2
.Find the corresponding day of a given date./ Counting dates between dates. / It calculates the angle shown as Ξ± in the figure in radians.IntegralCalculatorinC
β’ double integral3(double a0, double a1, double a2, double a3, double xs, double xe, double delta): Numeric calculation of the integral of a degree three polynomial within the range [xs,xe]. The given parameter delta provides the step size for the integration. β’ double integral4(double a0, double a1, double a2, double a3, double a4, double xs, double xe, double delta): Numeric calculation of the integral of a degree four polynomial within the range [xs,xe]. The given parameter delta provides the step size for the integration.PolynomialCalculatorAccordingtoGivenInputFile
Calculating Polynomials According to given input numbers and termsImdbMovieSortIncUsingLinkedList
The program takes a single argument as the name of the file to be read. A sample file is attached (Movies.txt). The program reads this file which has labeled columns separated by commas. Every row of this text file includes information about a movie. You are asked to read every row as a string and decompose the given information (separated by commas).The program should keep the movies in two distinct linked lists whose nodes are named as Movie_Budget and Movie_Name. In Movie_Budget, there should be three components; budget and year are kept as integers, and the name is stored as strings, in Movie_Name there should be three fields; genre and name as string and score as double. In the Movie_Budget list, elements are inserted and kept in descending order by year.OperatePolynomials
Write a function that reads two polynomials (at most degree 3) and applies a user-selected operator on these (via test functions in hw5_main.c). Allowed operators are addition, subtraction, and multiplication. The polynomials are entered with four coefficients. The function will return the resulting polynomial coefficients. User should input as (degree, coefficient). For equation π¦ = ππ₯3 + ππ₯2 + ππ₯ + π, the input should be taken from the terminal as: (3, a), (2, b), (1, c), (0, d).Quadtree-Implementatiton-in-Java
Quadtree Implementatiton in JavaRootFinderinC
double root3(double a0, double a1, double a2, double a3, double xs, double xe): Finds a root of the given 3rd degree polynomial within the range of [xs,xe]. You can assume that there is a root in the given range. β’ double root4(double a0, double a1, double a2, double a3, double a4, double xs, double xe): Finds a root of the given 4 th degree polynomial within the range of [xs,xe]. You can assume that there is a root in the given range.BankSequenceSystemAccordingtoCustomerProfile-in-C
n this homework, you will implement a sequence model for banking system. This homework will be implemented by using Structs in C.LLM-Real-Estate-Advisor
Love Open Source and this site? Check out how you can help us