디시인사이드 갤러리

갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

우리학교 자료구조 숙제 난이도.txt모바일에서 작성

Recursive갤로그로 이동합니다. 2012.04.13 22:03:13
조회 253 추천 0 댓글 8

Suppose a large corporation wishes to hold meetings with a committee of executives consisting of both its own executives as well as executives from other companies. This corporation needs a program to maintain a list of executives who will be present at a given meeting. The program should also keep track of where these executives will be seated in relation to one another at one of these meetings, given that the meeting will take place in the corporation's conference room around a large, circular table as shown below:


Your task for this assignment is to write a program that makes use of a circular doubly-linked list and provides a menu of options for performing operations on the current seating plan.
1. Write a fully-documented class named Executive that is used to represent information about an Executive who will be attending a meeting.

This class should keep track of the full name of the Executive and the name of the corporation he or she works for, both of which are to be stored as Strings. You should provide for this class a constructor as well as any necessary accessor/mutator methods.

2. Write a fully-documented class named ExecutiveNode that contains a reference to an Executive object as well as to two other ExecutiveNode objects, referred to as left and right. Below is a partial specification and it is up to you to fill in the remaining details:

public class ExecutiveNode

Constructor for ExecutiveNode
public ExecutiveNode()
setExecutive
public void setExecutive(Executive exec)
getExecutive
public Executive getExecutive()
setRight
public void setRight(ExecutiveNode node)
setLeft
public void setLeft(ExecutiveNode node)
getRight
public ExecutiveNode getRight()
getLeft
public ExecutiveNode getLeft()
3. Write a fully-documented class named ExecutiveList which represents a circular doubly-linked list. The first Executive that will be contained in this list (i.e., the one passed as a parameter to the ExecutiveList constructor), will be considered to be the chairperson of the meeting. The ExecutiveList class will therefore contain a pointer named chair to the node containing this particular executive. It is worth noting that the chairperson cannot be removed from this list and at no time can the chairperson be changed to a different executive. Your class will follow this specification, but you have to fill in the details:

public class ExecutiveList

Constructor for ExecutiveList
public ExecutiveList(Executive chairperson)
Constructs a new ExecutiveList with the given Executive object as the chairperson for the meeting. The list should contain a single node, chair, containing the given Executive and, by default, the person to the left and the person to the right of the chairperson should be the chairperson Executive object itself.
insertLeftOfChair
public void insertLeftOfChair(Executive exec)
Places the given Executive to the left of the chairperson in the meeting. The executive who was previously sitting to the left of the chairperson is now to the left of the given Executive, and the chairperson is now to the right of the given Executive. 
insertRightOfExec
public boolean insertRightOfExec(Executive exec, String target)
Places the given Executive to the right of an executive already in the list with the name target.
If there are multiple executives in the list with the name target, insert the new Executive to the right of the first Executive reached with the name target by following right links beginning with the chairperson.
If no executive in list has the name target, return false without inserting the new Executive.
Otherwise, the return value is true.
insertLeftOfExec
public boolean insertLeftOfExec(Executive exec, String target)
Places the given Executive to the left of an executive already in the list with the name target.
If there are multiple executives in the list with the name target, insert the new Executive to the left of the first Executive reached with the name target by following right links beginning with the chairperson.
If no executive in list has the name target, return false without inserting the new Executive.
Otherwise, the return value is true.
removeTargetExec
public boolean removeTargetExec(String name)
Removes an executive with the given name from the list.
If there are multiple executives in the list with the given name, remove the first Executive reached with the name target by following right links beginning with the chairperson.
If the chairperson is the only executive with the given name, return false without removing any executives.
If the chairperson shares the given name with other executives, remove the first executive other than the chairperson with the given name by following right links beginning with the chairperson.
If no executive is in the list with the given name, return false without removing any executives.
Otherwise, the return value is true.
NOTE: Do not destroy the list as you do this.
removeByCorporation
public int removeByCorporation(String corporation)
Removes all executives from the list that belong to a given corporation.
If the corporation is the name of the corporation that the chairperson belongs to, do not remove any executives and return a value of -1.
Otherwise, remove all executives belonging to the specified corporation.
The return value is equal to the number of executives removed in this process.
NOTE: Do not destroy the list as you do this.
printByCorporation
public void printByCorporation(String corporation)
Prints a list of the names of all executives belonging to the specified corporation. Each name should be printed on its own separate line.
The names should appear in counter-clockwise order (i.e., by following right links) beginning with the position of the chairperson.
printAllClockwise
public void printAllClockwise()
Prints a list of the names and corporations of all executives in the list in a clockwise direction.
For each executive, a comma and the name of his or her corporation should follow the name of the executive. Information about each executive (name and corporation) should appear on separate lines (one line per executive).
The names should appear in clockwise order (i.e., by following left links) beginning with the position of the chairperson.
printAllCounterClockwise
public void printAllCounterClockwise()
Prints a list of the names and corporations of all executives in the list in a counter-clockwise direction.
For each executive, a comma and the name of his or her corporation should follow the name of the executive. Information about each executive (name and corporation) should appear on separate lines (one line per executive).
The names should appear in counter-clockwise order (i.e., by following right links) beginning with the position of the chairperson.
4. Write a fully-documented class named MeetingManager. This class will contain a main method that first prompts the user for the name and corporation of a meeting's chairperson and then presents a menu that allows the user to perform the following operations on the seating arrangements for that meeting:

ILC (Insert an executive to the Left of the Chairperson)
Prompts the user for the name and corporation of an executive to be added to the meeting.
This executive is to be seated to the left of the meeting's chairperson.
ILE (Insert an executive to the Left of a given Executive)
Prompts the user for the name and corporation of an executive and the name of an executive already in the meeting.
If the executive already in the meeting is in fact in the list of executives, the new executive is seated to the left of that executive.
Otherwise, print an appropriate error message and do not insert the new executive.
IRE (Insert an executive to the Right of a given Executive)
Prompts the user for the name and corporation of an executive and the name of an executive already in the meeting.
If the executive already in the meeting is in fact in the list of executives, the new executive is seated to the right of that executive.
Otherwise, print an appropriate error message and do not insert the new executive.
RTE (Remove Target Executive)
Prompts the user for the name of an executive to be removed from the meeting.
If the name entered matches the name of the chairperson, remove an executive who shares that name with the chairperson, if one exists.
Otherwise, print an appropriate error message.
In all other cases, remove an executive whose name matches the target name, if such an executive exists, or print an appropriate error message.
RBC (Remove By Corporation)
Prompts the user for the name of a corporation.
If the name of the corporation entered matches the name of the chairperson's corporation, print an appropriate error message.
Otherwise, remove all executives belonging to the specified corporation and print a message indicating the number of executives removed from the meeting in this process.  
PBC (Print By Corporation)
Prompts the user for the name of a corporation.
Prints the names of all executives who belong to the given corporation in counter-clockwise order starting at the position of the chairperson.
PCC (Print all in Counter-Clockwise order)
Prints the name and corporation for each executive at the meeting in counter-clockwise order beginning with the chairperson.
PCL (Print all in CLockwise order)
Prints the name and corporation for each executive at the meeting in clockwise order beginning with the chairperson.
EXT (EXiTs the program)
INPUT FORMAT

All names and menu options are case-insensitive. You should use the equalsIgnoreCase method of the String class for these comparisons.
INPUT FORMAT

All names and menu options are case-insensitive. You should use the equalsIgnoreCase method of the String class for these comparisons.
There are no restrictions on the content of the Strings input for corporation and/or executive names.
OUTPUT FORMAT

The user must be prompted each time that input is requested by the program.
For lists of executives, information about each executive should appear on separate lines.
All error messages should be informative and correctly explain to the user what the situation is.
SAMPLE INPUT/OUTPUT:

Note that computer output is in blue and comments are in green.


//This the opening prompt for the program:
Enter the name of the chairperson: Tom Jones
Enter the corporation of the chairperson: ABC Inc.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PCC

//Only prints the chairperson:
Tom Jones, ABC Inc.
Insertion successful.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: ILC

Enter the name of the executive: Ed Wilson
Enter the corporation of the executive: ABC Inc.
Insertion successful.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PCC

//Print the List:
Tom Jones, ABC Inc.
Ed Wilson, ABC Inc.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: ILE

//Insert Mark Johnson to Ed Wilson's left and Tom Jones' right:
Enter the name of the new executive: Mark Johnson
Enter the corporation of the new executive: ABC Inc.
Enter the name of the target executive: Ed Wilson
Insertion successful.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PCC

//Print the List:
Tom Jones, ABC Inc.
Mark Johnson, ABC Inc.
Ed Wilson, ABC Inc.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: IRE

//Insert Steve Paxson to Tom Jones' left and Ed Wilson's right:
Enter the name of the new executive: Steve Paxson
Enter the corporation of the new executive: Dell Computers
Enter the name of the target executive: Ed Wilson
Insertion successful.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PCC

//Print the List:
Tom Jones, ABC Inc.
Mark Johnson, ABC Inc.
Ed Wilson, ABC Inc.
Steve Paxson, Dell Computers

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: IRE

//Insert another Mark Johnson to Ed Wilson's left and the original Mark Johnson's right:
Enter the name of the new executive: Mark Johnson
Enter the corporation of the new executive: Dell Computers
Enter the name of the target executive: Mark Johnson
Insertion successful.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PCC

//Print the List:
Tom Jones, ABC Inc.
Mark Johnson, ABC Inc.
Mark Johnson, Dell Computers
Ed Wilson, ABC Inc.
Steve Paxson, Dell Computers

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PCL

//Print the List in the other direction:
Tom Jones, ABC Inc.
Steve Paxson, Dell Computers
Ed Wilson, ABC Inc.
Mark Johnson, Dell Computers
Mark Johnson, ABC Inc.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: RTE

//Removes Mark Johnson of ABC Inc. (he is the first one reached by right links):
Enter the name of the executive to remove: Mark Johnson
The executive has been removed from meeting.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PCC

//Print the List:
Tom Jones, ABC Inc.
Mark Johnson, Dell Computers
Ed Wilson, ABC Inc.
Steve Paxson, Dell Computers

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PBC

//List all executives from Dell Computers:
Enter the name of the corporation to display: Dell Computers

Mark Johnson, Dell Computers
Steve Paxson, Dell Computers

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: RBC

//Try to remove all ABC Inc. executives (causes an error):
Enter the name of the corporation to remove: ABC Inc.
Invalid command: cannot remove all employees from the chairperson's corporation.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PCC

//Print the List:
Tom Jones, ABC Inc.
Mark Johnson, Dell Computers
Ed Wilson, ABC Inc.
Steve Paxson, Dell Computers

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: RBC

//Try to remove all executives from a non-existent corporation:
Enter the name of the corporation to remove: New Corporation
0 executive(s) have been removed from the meeting.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: RBC

//Try to remove all executives from Dell Computers:
Enter the name of the corporation to remove: Dell Computers
2 executive(s) have been removed from the meeting.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PCC

//Print the List:
Tom Jones, ABC Inc.
Ed Wilson, ABC Inc.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: IRE

//Attempt an invalid insertion:
Enter the name of the new executive: Mark Johnson
Enter the corporation of the new executive: Dell Computers
Enter the name of the target executive: Mark Johnson //Not currently in list
Invalid command: Executive not found in list.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: IRE

//Insert another Tom Jones:
Enter the name of the new executive: Tom Jones
Enter the corporation of the new executive: Dell Computers
Enter the name of the target executive: Tom Jones
Insertion successful.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: PCC

//Print the List:
Tom Jones, ABC Inc.
Tom Jones, Dell Computers
Ed Wilson, ABC Inc.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: RTE

//Removes Tom Jones of Dell Computers (the chairperson cannot be removed):
Enter the name of the executive to remove: Tom Jones
The executive has been removed from meeting.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: RTE

//Fails to remove Tom Jones (the chairperson cannot be removed):
Enter the name of the executive to remove: Tom Jones
Invalid command: The chairperson cannot be removed from the meeting.

Please select an option from the following menu:
ILC)Insert to Left of Chairperson
ILE)Insert to Left of Executive
IRE)Insert to Right of Executive
RTE)Remove Target Executive
RBC)Remove By Corporation
PBC)Print By Corporation
PCC)Print All Counter-Clockwise
PCL)Print All Clockwise
EXT)Exit Program
Please select an option: EXT

Program terminated normally...


이게 두번째 숙제였고 자바로 짜야함

물론 API 못 씀 ㅋㅋ 직접 링크드 리스트 만들고.

추천 비추천

0

고정닉 0

0

댓글 영역

전체 댓글 0
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 뛰어난 운동 신경으로 남자와 싸워도 이길 것 같은 여자 스타는? 운영자 25/11/24 - -
이슈 [디시人터뷰] 충무로가 주목하는 신예, '세계의 주인' 서수빈 운영자 25/11/24 - -
AD 대학생 필수템! What's in my Bag 운영자 25/11/21 - -
310408 지금 코드 잼 하고 있음? [5] 쩝...(221.153) 12.04.14 61 0
310407 네이버에 누가 문제 해석해놓음...kin [3] ?(59.15) 12.04.14 90 0
310406 나의 부끄러운 문제 A 코드.cpp [2] ?(59.15) 12.04.14 70 0
310405 형들 나 코드잼 2번 뭐가 틀린거야?? ㅠㅠㅠㅠㅠ [4] 횽들(169.229) 12.04.14 50 0
310404 코드잼 B번에서 문제를 이해 못해 포기 [7] ?(59.15) 12.04.14 57 0
310403 애들아 구글코드잼 언제까지냐 [3] 니 코 가 뭐갤로그로 이동합니다. 12.04.14 76 0
310402 횽들 왜 자바 스캐너에서 마지막 줄을 인식을 안하지? 횽들(169.229) 12.04.14 32 0
310399 키높이하니까 생각나는건데 [1] 생물학(110.11) 12.04.14 41 0
310398 C번 Large에서 타임리미트 걸린 놈들은 대체 뭐하는 애들이냐? 생물학(110.11) 12.04.14 54 0
310397 다이렉트x 에관해서 질문하기좋은 사이트아시는분 [3] DontMeddle갤로그로 이동합니다. 12.04.14 40 0
310396 캐꼬형 잘생겼음? [5] SODMaster갤로그로 이동합니다. 12.04.14 83 0
310395 형들 XOR 연산이 암호화에 어떻게 쓰이나.. 그거 물어볼꼐.. [13] 스루가::몽키갤로그로 이동합니다. 12.04.14 177 1
310394 근데 졸작같은거 저작권은 어케되요 보통? [3] 길가던놈갤로그로 이동합니다. 12.04.14 93 0
310393 야 코드잼 D 푼 사람 있냐? [10] (60.241) 12.04.14 128 0
310392 눈이 호구라서 여친이없는게 말이되냐? [5] 김멋져갤로그로 이동합니다. 12.04.14 113 0
310391 코드잼에 걸린 음모. [1] ㅁㄴㅇㄻㄴㅇ(183.98) 12.04.14 89 0
310390 코드잼 일번 알고리즘 귀뜸좀 줘라 [3] 니 코 가 뭐갤로그로 이동합니다. 12.04.14 93 0
310389 c++ 연결리스트 프로그램 오류 하나만 잡아주실분ㅜㅜ 현상금 10,000 하양(221.159) 12.04.14 58 0
310388 오늘 날씨 개 좋던데... SODMaster갤로그로 이동합니다. 12.04.14 25 0
310387 힐 포함해서 평균 173이면.... [6] SODMaster갤로그로 이동합니다. 12.04.14 120 0
310386 프갤 성님들 jsp 늅늅이가 질문 하나만 드림 [9] 해피너스갤로그로 이동합니다. 12.04.14 69 0
310385 고인람쥐님 보세염 하양(221.159) 12.04.14 25 0
310383 어제 괄호문제 물어보던 깁늅늅인데 만들긴 만들었는데 문제가 생겼다.. 김늅늅(124.80) 12.04.14 21 0
310381 이거 왜 이렇게 나오는거이?????? 도와주세요 ㅠㅠㅠㅠ [2] 도와주세요 (118.217) 12.04.14 42 0
310380 c언어프로그래밍 고수님들 이거 오류좀 고쳐주세요 ㅠ [8] 고인람쥐갤로그로 이동합니다. 12.04.14 86 0
310378 횽들 java 아주 간단한 형 변환 질문!! [1] ㅠㅠ(119.148) 12.04.14 86 0
310376 코드잼하는 갤러 있냐? [6] ㅇㅇ(111.118) 12.04.14 83 0
310374 소개팅 하기 전에 소개팅 동선을 짜라는데 [3] DeCoY갤로그로 이동합니다. 12.04.14 83 0
310373 코드잼하다가 [6] 행인1(121.88) 12.04.14 105 0
310372 3시에 나도 코잼 참전한다 생물학(211.234) 12.04.14 40 0
310370 using A1,A2,A3..나 on <predicate>는... 에이시아(203.90) 12.04.14 21 0
310369 아 자연 내부 조인이라는게 이런거야??? [7] 에이시아(203.90) 12.04.14 61 0
310366 c++ 프로그램 오류 하나만 잡아주실분 ㅜㅜ 사례해드립니다. [1] 하양(221.159) 12.04.14 71 0
310362 데이터베이스 자연 조인에서 말야. [3] 에이시아(203.90) 12.04.14 128 0
310360 C로 bmp(jpg 등)파일 알지비값 뽑아내서 이것저것하고싶은데 [4] ㅇㅇㄹ(112.161) 12.04.14 53 0
310359 vb 과제인데 빈칸채우기야. 검색해도 잘안나와.ㅠ 썡초보한테 좀 알려줘 [5] 완전쌩초보(115.23) 12.04.14 51 0
310358 야 코드잼 한문제라도 푸는놈들은 [3] 니 코 가 뭐갤로그로 이동합니다. 12.04.14 121 0
310357 야 java로 linked list나 각종 알고리즘은 좀 구현하기 비효율 [2] 니 코 가 뭐갤로그로 이동합니다. 12.04.14 68 0
310356 WP8 레알 짱이라는 [1] 땡칠도사갤로그로 이동합니다. 12.04.14 64 0
310354 자바 형변환 간단한거 질문좀여 ㅜㅜ 으잉(112.171) 12.04.14 20 0
310352 근데 윈폰8이 XBOX 연동되고 [2] 김예언(125.177) 12.04.14 58 0
310351 JAVA vs C# [2] 김예언(125.177) 12.04.14 116 0
310350 고독하다... [1] 땡칠도사갤로그로 이동합니다. 12.04.14 52 0
310349 창업 설레발 조심해라 [6] 페고떼찌갤로그로 이동합니다. 12.04.14 201 0
310348 소프트웨어 개발이 적성에 안 맞는 사람. [4] 프로그램(124.49) 12.04.14 251 0
310347 다음중 가장 갖고싶은 초능력은? [7] elwlwlwk갤로그로 이동합니다. 12.04.14 127 0
310346 소프트웨어 개발자가 진짜 그렇게 힘듬? [2] 프로그램(124.49) 12.04.14 197 0
310345 생물학 [1] elwlwlwk갤로그로 이동합니다. 12.04.14 29 0
310343 야!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 김멋져갤로그로 이동합니다. 12.04.14 36 0
310341 폰갭에 대해 아는 횽들 봐줘...! 생크림초보(125.177) 12.04.14 24 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

디시미디어

디시이슈

1/2