===================================================================================================문제 분석=================================================================================================== 음,, 일단 랭크소트가 무엇인지를 파악해야겠군,,,최형이라면 알지도 모르지만, 혼자 해보는것도 재미있을것 같다,,문제는 시간. 시간 복잡도의 경우도 “counting the comparison operations(비교 연산자 갯수 세기)”는 쉬운데 “counting the steps with the s/e and frequency table(스텝을 세어서 빈도분석)”법은,,,,, 서의성 교수님 시간이었지만, 전날 무리하는 바람에 못들었다.. 공부할게 많네,,, 공간 사용에 대해서는 보통 정렬의 경우에 공간은 거의 차지하지 않지,더 보기
Tag: 숙제
Data Structure 2번째 HW(번역)
===================================================================================================번역=================================================================================================== 1. Our textbook introduces another sorting algorithm called rank sort at page 80.1. 우리의 교제에서는 또다른 정령 알고리즘인 rank정렬을 80페이지에서 소개하고 있다.Make a rank sort program that sorts students by their name and print their scores along side the names in the sorted order.Rank정렬을 이용하여 학생들을 그들의 이름으로 정렬하고, 그들의 점수를 정렬된 이름옆에 표시하는더 보기
Data Structure 2번째 HW
1. Our textbook introduces another sorting algorithm called rank sort at page 80. Make a rank sort program that sorts students by their name and print their scores along side the names in the sorted order. Student names and scores must be included in a Student object. The data are input through keyboard and the더 보기
C++숙제,,,
이제 C++패스했다고, 점점 귀찮아 집니다….ㄷㄷ 1. Julian dates. Suppose you would like to know how many days ago Columbus was born. It is tedious to figure this out by hand, because months have different lengths and because you have to worry about leap years. Many people, such as astronomers, who deal with dates a lot더 보기
JAVA숙제,,,
요즘 정신없이 사느라 티스토리도 못들어 오네요,,,ㄷㄷ 일단 이번숙제는 1. Write a unit conversion program that asks users to identify the unit from which they want to convert and the unit to which they want to convert. Available units should be mm, cm, m, ft, and in. Define two objects of a class UnitConverter that convert더 보기
4주차 C++숙제가 떳습니다.
늦었지만 공지 합니다. 제가 C++을 패스하고 좀 게을러 졌네요,,, 1번. “Do you want to continue?”라는 문구를 출력한뒤 사용자게 “Y”, “Yes”, “OK”, “Sure”, or “Why not?”을 입력하면 “OK”를 출력하고, “N”, “No”를 입력하면 “Terminating”을 출력, 둘다 아니면 “Bad input”을 출력하도록 하고, 대소문자는 구분하지 않는대요,, 2번. 계속 사용하던 Employee 클래스형 변수를 이용해서 이름과 시급을 읽어 냅니다. 그후 일주일에더 보기
4주차 자바숙제 떳어요,,
너무 늦었지만, 공지합니다. 이번 숙제는 두개의 수를 입력받을수 있고 합, 차, 곱, 평균, 차이의 절대값, 둘중 큰수, 둘중 작은수 들을 출력할수 있는 클래스 Pair을 설계하는것 이 첫번째 숙제고요, 두번째는 DataSet 라는 클래스를 설계해서 값을 입력받고, 입력받은값중 제일 큰 수와 제일 작은수를 출력하는 클래스를 설계하랍니다. 우선 첫번째 Pair클래스는 public class Pair { /** Constructs더 보기
3주차 JAVA숙제가 나왔습니다^^
내용은 Implement a class Student. For the purpose of this exercise, a student has a name and a total quiz score. Supply an appropriate constructor and methods getName(), addQuiz(int score), getTotalScore(), and getAverageScore(). To compute the latter, you also need to store the number of quizzes that the student took. Supply a StudentTester class that더 보기
3주차 C++숙제가 나왔습니다!!
내용은 아래와 같아요~~ 1. Your boss, Juliet Jones, is getting married and decides to change her name. Complete the following program so that you can type in the new name for the boss: int main() { Employee boss(“Jones, Juliet”, 45000.00); /* your code goes here; leave the code above and below unchanged */ cout
내맘대로 강좌 C++편 6 (함수편)
이번에는 함수편이야. 먼저 우리가 C++언어를 짤때 항상 들어가는 int main() { return 0; } 에 대해 설명하려고해. 왜 함수예기를 한다고 하고서 main예기를 하냐고? 그야 main이 함수니까 그러지. int main() 이거는 함수 main을 선언한다는거야 그러면서 int형의 값을 반환하고 인자는 안받겠다는거야. 이름이 main이라는것은 프로그램을 실행시키면 맨처음 불려지는 함수라는 뜻이고, 그러면 이제 선언과 반환과 인자에 대해 알아봐야지,더 보기