디시인사이드 갤러리

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

갤러리 본문 영역

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

Recursive갤로그로 이동합니다. 2012.04.13 22:03:13
조회 255 추천 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 - -
공지 프로그래밍 갤러리 이용 안내 [97] 운영자 20.09.28 48785 65
2905356 입시 면접 FM 합격 솔루션(필승 전략 해법)!U 프갤러(121.142) 23:15 9 1
2905353 조갑제도 “국힘은 이적단체”…여당은 ‘내란 가짜뉴스’ 대응 중 발명도둑잡기(118.216) 22:57 10 0
2905352 해외 투자 증세에 관해 [1] 발명도둑잡기(118.216) 22:54 39 0
2905351 나님 달러 미국주식 풀매수중 ㅇㅅㅇ [4] ♥멘헤라냥덩♥갤로그로 이동합니다. 22:50 21 0
2905350 미국주식갤에서 친미매국노들 욕하다가 차단당함 [2] 손발이시립디다갤로그로 이동합니다. 22:43 18 0
2905349 이태원 발언으로 모욕죄 벌금 100만원 싸게쳤다 vs 과하다 [5] ㅇㅇ(39.7) 22:36 30 0
2905348 영어를 못해서 구글을 못가네 [1] ㅇㅇ갤로그로 이동합니다. 22:35 17 0
2905345 원티드 자격요건은 거기 직원들도 다 못할거 같은데 ㅇㅇ(182.228) 22:25 12 0
2905344 이태원 모욕죄로 100만원 벌금받았는데 걍 목매달고 죽을까 [2] ㅇㅇ(39.7) 22:24 20 0
2905343 오픈소스에서는 취약점을 감시하는 사람이 더 많다 발명도둑잡기(118.216) 22:23 13 0
2905342 사타구니 털 제모하면 이상한 사람인가요? [5] 넥도리아(220.74) 22:22 28 0
2905341 노말틱도 말해주잖아 오픈소스의 취약점 [1] ㅇㅇ(114.30) 22:17 23 0
2905340 <복면가왕> 관련 생각나는 예전 글 발명도둑잡기(118.216) 22:14 14 0
2905339 정치가 어쨌든 나라가 어쨌든 국가가 어쨌든 삶이 어쨌든 [8] 넥도리아(220.74) 22:13 38 0
2905338 이태원 모욕죄로 구약식 벌금100만원 = 재산잃고 전과남고 인생조진거지? [10] ㅇㅇ(39.7) 22:11 26 0
2905337 저좀 어떻게 성공시켜 주실 분 없나요? [2] 넥도리아(220.74) 22:07 23 0
2905335 사실 제가 틀딱이 아니라 귀여운 여자임을 인증합니다 [6] 헬마스터갤로그로 이동합니다. 21:58 41 0
2905332 페이커닮은 개발자 찾습니다 프갤러(106.101) 21:38 22 0
2905331 진짜 크게 벌리는 건 아니고… 그냥 생활비용 차트부자(1.233) 21:35 16 0
2905325 ❤✨☀⭐⚡☘⛩☃나님 시작합니당☃⛩☘⚡⭐☀✨❤ [1] ♥멘헤라냥덩♥갤로그로 이동합니다. 20:52 22 0
2905324 프로그래머, 내가 하다 하다 3D 공부한다. [4] 프갤러(59.16) 20:52 43 1
2905319 출퇴근길에 소소하게 짭짤하네요 [1] 존버장군(1.233) 20:15 30 0
2905316 나 좀 찾지 말아달라고 했음 ㅇㅇ(211.234) 20:02 29 0
2905313 나 아까 실수했네 발명도둑잡기(118.216) 19:45 23 0
2905299 서울 유명 스웨디시 후기 모음집 ㅇㅇ(118.235) 18:50 28 0
2905298 어제부터 저녁에 배가 안 고픔;; [6] ♥멘헤라냥덩♥갤로그로 이동합니다. 18:49 49 0
2905297 클래스 101 결제해본 사람있나 ㅇㅇ(140.248) 18:28 26 0
2905296 국비 말고 혼자 자격증 따서 취직하는것도 가능함? [1] ㅇㅇ갤로그로 이동합니다. 18:27 31 0
2905294 후 시발 이런건 15분만에 최라락 써서 뚝딱 해야하는건데 프갤러(14.52) 17:56 31 0
2905293 회원가입 겨우 완성했다. 프갤러(14.52) 17:53 32 0
2905292 <서울 자가에 대기업 다니는 김부장 이야기>관련 생각나는 글 발명도둑잡기(118.216) 17:31 35 0
2905291 맨땅에 헤딩하기에는 c가 가장 적절한듯 ㅇㅇ(118.235) 17:29 22 0
2905289 AI 로 뚝딱해서 돈 벌었다는 사람 통장 까봐. 프갤러(59.16) 17:09 31 1
2905288 미디어에서 AI 로 1 분만에 뚝딱 개발했다니까 정말 그런줄 알아. 프갤러(59.16) 17:04 30 1
2905287 프로그래머가 되려면 꿈과 희망을 버려라. [3] 프갤러(59.16) 16:57 51 0
2905284 “시간이 돈을 버는 구조 만들기: 매달 ‘짭짤한 복리’ 얻는 방식” 88아재 (119.15) 16:32 18 0
2905283 <우주메리미>가 인기래서 생각나는 예전 글 발명도둑잡기(118.216) 16:28 20 0
2905282 면접문제를 만들어봤다. 프갤러(49.165) 16:11 31 0
2905281 "찬송가 부르고 주식 사"‥ 이불말이는 주가 올리는 '제물' 발명도둑잡기(118.216) 16:03 13 0
2905280 시대의 어르신들이 하나 둘 돌아가시는게 참 먹먹하구낭.. [3] ♥멘헤라냥덩♥갤로그로 이동합니다. 15:55 37 0
2905279 바지가 내려가 넥도리아(223.38) 15:49 34 0
2905278 ■si회사갈거면 포트폴리오 프론트엔드 뭘로하는게 좋냐? [9] ㅇㅇ갤로그로 이동합니다. 15:47 58 0
2905277 Ada 인생 40 년 갈아 넣었습니다. 프갤러(59.16) 15:33 28 0
2905276 착한 중국인 환영⭐+ ♥멘헤라냥덩♥갤로그로 이동합니다. 15:30 24 0
2905275 Ada 언어는 공부하면 할수록 너무 신기하다.. ㅎㅎ 나르시갤로그로 이동합니다. 15:14 26 0
2905274 나님 왤케 소중하실깡..?⭐+ [2] ♥멘헤라냥덩♥갤로그로 이동합니다. 15:08 42 0
2905272 SK네트웍스 FAMILY AI 캠프 24기 프갤러(118.235) 14:46 26 0
2905271 미국정치 갤러리 이미지, 동영상 첨부 차단 중 [1] 발명도둑잡기(118.216) 14:46 33 0
2905270 열심히 살아라 RyuDOG갤로그로 이동합니다. 14:46 32 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

디시미디어

디시이슈

1/2