디시인사이드 갤러리

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

갤러리 본문 영역

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

Recursive갤로그로 이동합니다. 2012.04.13 22:03:13
조회 256 추천 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 - -
AD 따뜻한 겨울나기! 방한용품 SALE 운영자 25/11/27 - -
311298 입사고민이 있어 여쭙니당.. [8] 늅늅(113.59) 12.04.20 164 0
311297 C#을 공부하고 있는게 한심해지네... [2] 알렉산더K갤로그로 이동합니다. 12.04.20 111 0
311294 html5는 지금 당장 쓰기엔 쓰레기 아님? [4] d(125.177) 12.04.20 138 0
311293 알바야 알바야 나 잔업해야해 놀아줘 초잉여갤로그로 이동합니다. 12.04.20 33 0
311291 알바 힘들겠다 초잉여갤로그로 이동합니다. 12.04.20 39 0
311290 가차없네 짤올렸다고 ㅋㅋㅋ 초잉여갤로그로 이동합니다. 12.04.20 61 0
311287 신입 예비가 질문 올라겟습니다 [14] in(223.195) 12.04.20 156 0
311286 D-50분 안되곘다 몇몇개는 복붙해야겠다 ㅠㅠㅠ ㅋㄱ(183.96) 12.04.20 36 0
311285 형들 나 멘붕왔어 [9] -니지-갤로그로 이동합니다. 12.04.20 129 0
311284 대학 2학기 시작하면 복학전까지 청강 문의해볼까? [2] 초잉여갤로그로 이동합니다. 12.04.20 52 0
311281 이런 식으로 괄호 써서 나누는 버릇 나쁜가요? [4] AAW갤로그로 이동합니다. 12.04.20 125 0
311280 미안타.. ㅋㅋㅋㅋ [1] iljeomobolt갤로그로 이동합니다. 12.04.20 68 0
311279 후 좋은 아침~!! [1] SODMaster갤로그로 이동합니다. 12.04.20 28 0
311277 D-2시간 아놔..자소서 마무리 지을수있을까''ㅠ [1] ㅋㄱ(183.96) 12.04.20 51 0
311276 현재 프로그래머의 삶을 살고 있는 형들, 인터뷰좀해줘 [9] 퍼스널브랜딩(203.237) 12.04.20 168 0
311273 난수나 가지거 놀아야지 [1] 초잉여갤로그로 이동합니다. 12.04.20 35 0
311272 오오미 글 지우는 속도보소 c(14.32) 12.04.20 30 0
311270 하음 정지풀렸네 ㅋ [1] 초잉여갤로그로 이동합니다. 12.04.20 46 0
311264 그만점 지워라 니욕하는것도아닌데 [1] 초잉여3(106.103) 12.04.20 40 0
311260 아싸 베타 당첨! [4] 외계달팽갤로그로 이동합니다. 12.04.20 63 0
311259 아따 게시판 롤백하는 소리좀 안나게 하라! [1] c(14.32) 12.04.20 40 0
311248 내글 왜 지우는거야? [1] iljeomobolt갤로그로 이동합니다. 12.04.20 42 0
311247 C언어] 간접참조 수준이 다르다는게 무슨말임? [3] 12(59.12) 12.04.20 299 0
311244 역시 대단합니다. 순식간에 삭제군요 ㅎㅎ ㅂㅈㄷㄱ(182.211) 12.04.20 25 0
311243 AIX 좆고수횽 없나여? 의존성 문제로 질문 있는데... libc.a요 [4] 형들아(210.96) 12.04.20 92 0
311238 안드로이드 만들었음 [3] 이모군(175.114) 12.04.20 84 0
311237 야 돈주고 내가 산 책 주면 복사해서 pdf파일 만들어주는데 없냐? [7] 초잉여3(106.103) 12.04.20 105 0
311232 바로가기 그거 수작업으로 만들 파일 못된다 생물학(211.234) 12.04.20 25 0
311222 BE C6 20 BE BE B9 DF 20 C1 BF B0 B0 B3 D 니 코 가 뭐갤로그로 이동합니다. 12.04.20 60 0
311219 바로가기만드는방법아는사람 [4] 나는호구다(175.193) 12.04.20 66 0
311218 자바 코딩 해석 좀 도와주실분 계신가요?? [4] 아결종결자갤로그로 이동합니다. 12.04.20 58 0
311212 단순 반복... [4] 아놔콘다갤로그로 이동합니다. 12.04.20 77 0
311209 레드블랙 트리 질문합니다 ㅠㅠ [2] 천하위공(203.252) 12.04.20 211 0
311200 안녕하세요 기계어 10년차 개발자입니다 질문좀 [5] (125.177) 12.04.20 145 0
311195 프갤러들아 내말을 쳐 들을것을 명하노라 [32] 호구러(175.193) 12.04.20 163 1
311194 VS6.0무시하지마라 깝 ㄴㄴ [9] 호구러(175.193) 12.04.20 114 0
311193 정규표현식 질문 [13] ㅁㄴㄻㄹ갤로그로 이동합니다. 12.04.20 109 0
311191 아 잊고 있다가, 프갤와서 보고 깨달았다. 외계달팽갤로그로 이동합니다. 12.04.20 49 0
311190 결국 하내 iljeomobolt갤로그로 이동합니다. 12.04.20 41 0
311186 퇴사의 날 ㄱㄱ [1] ☎v2.2™갤로그로 이동합니다. 12.04.20 89 0
311184 고대 태학원 개빠시나요? Adelposs갤로그로 이동합니다. 12.04.20 22 0
311180 실질적인 이야기좀 해줘 ㅠ Adelposs갤로그로 이동합니다. 12.04.20 23 0
311179 근로자의 날 ㄱㄱ [3] 빌어먹을야옹갤로그로 이동합니다. 12.04.20 47 0
311178 지는 일안하면서 시키는세끼 어찌처리함? [9] Adelposs갤로그로 이동합니다. 12.04.20 78 0
311177 나친박? iljeomobolt갤로그로 이동합니다. 12.04.20 110 0
311176 어제 컴공 전공수업 들으면서 재밌는 일이 있었다 [3] ㅇㅇㅇ(110.15) 12.04.20 128 0
311175 ★ 형님들 이거 뭔가요 ★ [1] 아오빡쳐(112.172) 12.04.20 45 0
311174 자라 ■정수정■갤로그로 이동합니다. 12.04.20 30 0
311171 오래간만에 와서 신박한 떡밥.ricecake [2] 로하로하알로하갤로그로 이동합니다. 12.04.20 57 0
311169 RedBlack트리에 대해 질문 올립니다. [1] 천하위공(115.93) 12.04.20 41 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

디시미디어

디시이슈

1/2