Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Tags
Member Avatar for Daron_1

public class HashedClass{   int ticketNumber; // keyfield string purchaserName;   Hashtable hashtable = new Hashtable();   insert();   fetch();   delete();   update();   } I started a pseudocode above, but I know it needs more work. Are there any resources that can help guide me to implementing my …

Member Avatar for Icetutor
0
396
Member Avatar for Deamanjoe

How can implement a perfect hashed data structure using the four basic operations? Could I do something like this or do I need to break up my code into two different classes and then test the methods from another class's main method? public class PerfectHashed{ int ticketNumber; // keyfield String …

Member Avatar for rproffitt
0
379
Member Avatar for Daron_1

I am working creating a fully encapsulated, homogeneous singly linked data structure. The Listing class and SinglyLinkedList class that are part of the whole application compile fine, but the problem that I am having is performing different operations such as insert, fetch, update, and delete inside of a do-while loop …

Member Avatar for rproffitt
0
301
Member Avatar for Daron_1

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="XEx14ProductReceipt.Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Ch14: Product Receipt</title> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link href="Content/bootstrap.min.css" rel="stylesheet" /> <link href="Content/site.css" rel="stylesheet" /> <script src="Scripts/jquery-1.9.1.min.js"></script> <script src="Scripts/bootstrap.min.js"></script> </head> <body> <div class="container"> <header class="jumbotron"><%-- image set in site.css --%></header> <main> <form id="form1" runat="server" class="form-horizontal"> <div …

0
168
Member Avatar for Daron_1

public class StudentListings{        private String name;   // key field         private int ID;         private double GPA;         private int next;         private int size;        private StudentListing[] data;         public StudentListings(){          this.name= name;         this.id= ID;         this.gpa=GPA;     }       public StudentListings(){        next=0;      data= new StudentListings[Size];      size= Size;       } // end of constructor       public boolean insert(StudentListings newStudentListing) {         if(next>=size) // the structure is full        return false;        // store a deep copy of the client's node        data[next]= new StudentListing.deepCopy();         if(data[next]== null)        return false;        next= next + 1; // prepare for the next insert         return true;        } // end of insert method       public StudentListings fetch(String targetKey){        StudentListings studentListings;      StudentListings temp;  …

Member Avatar for AssertNull
0
446
Member Avatar for Daron_1

Hello Everyone, I am building multi-web application pages using the Default.aspx, Default.aspx.cs and Confirm.aspx and Confirm.aspx.cs. The problem that I am having is that when I click "Confirm" before clicking "Calculate," the event handler displays the "Click the Calculate button before the confirm" at the bottom of the page. It …

0
215
Member Avatar for Daron_1

Hey Everyone, I would like to know can you calculate the absolute speed of this algorithm below and if the the time it takes to execute a memory access is 100 nanoseconds and that all other operations (arithmetic, register accesses, etc.) take 10 nanoseconds: [Click Here](null)

Member Avatar for rproffitt
0
579
Member Avatar for Daron_1

How can I validate each of (upper textboxes) using AJAX to see if the username and password is correct and if they are not correct, display the error messages in red below each respective textbox. Here is my code. Any suggestions would be help. <html> <h1>Welcome to Cuyahoga Community College …

Member Avatar for diafol
0
302
Member Avatar for Daron_1

How can I get my current content to slide to the left and bring in new content from the right (after clicking on button 1) when an existing student's username and password are correct, and if it's not correct display error messages that either the username or password isn't correct …

0
159
Member Avatar for Daron_1

I am having trouble with getting my textboxes and buttons aligned to look like the attached image. Can someone please also tell how I should make the radius border around my element smaller like the pic. Here is my code so far. Any suggestions would be much appreciated. @model FinalProject.Models.HomeViewModel …

Member Avatar for gentlemedia
0
279
Member Avatar for Daron_1

I am working on creating a BEFORE UPDATE trigger which should display an error message if I UPDATE a student's EnrolledDate with a future date. For example, the last inserted EnrolledDate in the Student table is '2016-10-18', so any other record after that date should flag an error message saying …

Member Avatar for AndrisP
0
212
Member Avatar for Daron_1

Hello Everyone, I am working in MySQL Workbench 6.3 CE and trying to use a trigger inside of a stored procedure to see if it will detect if my email format is not in the right format I specified in the message text error, but I am having trouble because …

Member Avatar for Daron_1
0
334
Member Avatar for Daron_1

I am trying to figure out how can I use Jquery to move my pictures left and right (or back and forth) that are inside of my container picture? Any suggestion would be much appreciated. I thought about using animate features but that would control the movement of the actual …

Member Avatar for diafol
0
209