إنضمامك إلي منتديات استراحات زايد يحقق لك معرفة كل ماهو جديد في عالم الانترنت ...

انضم الينا
استراحات زايد الصفحة الرئيسية


إضافة رد
 
LinkBack أدوات الموضوع انواع عرض الموضوع
  #1  
قديم 05-10-2014, 04:10 PM
عضو ماسي
بيانات محروم.كوم
 رقم العضوية : 503
 تاريخ التسجيل : Dec 2007
الجنس : female
علم الدوله :
 المشاركات : 2,100,613
عدد الـنقاط :3341
 تقييم المستوى : 2139



السلام عليكم ورحمه الله وبركاته
اخواني واخواتي الكرام
مطلوب مني مشروع بسيط
في لغة الجافا
وهو برنامج يقرأ من ملف خارجي
مثلا سطرين في ملف تكست
كل سطر فيه معادلة حسابية
البرنامج يقوم بقراءة المعادلات ويقوم بحلها
واخراجها في ملف خارجي ثاني
ارجووكم جدا الي عنده فكرة عن كذا لا يبخل علينا جزاكم الله الف خير

هذا المشروع بالتفصيل


اقتباس:






SUMMARY:
This project will require you to create a Java program that will take an input file
consisting of several lines of infix notation mathematical calculations, convert them to
postfix notation (using the first algorithm below), and evaluate them (using the second
algorithm below).
The results of the calculations will then be printed to an output file. This project will
build on your linked list implementations, using them to create your own
implementations of stacks and queues for each of the algorithms.
PROGRAM:
1. Input file:
The input file will contain several lines of equations in infix format. Each line can use
several of the available mathematical or logical operators: addition [+], subtraction [-],
multiplication[*], division [/], parentheses [()], less than [], equal to
[=], logical AND [&], logical OR [|], and logical NOT [!]. For us, - is a binary operator, so -5

is illegal. When using the mathematical and logical operators together, let “false” have
value 0 and “true” have value 1. Let precedencies be: {*,/} > {+,-} > {=,&,|,!}.
For example, an input file could consist of the following lines:
4.7 + 3.0 * 5.5 (evaluates to 21.2)
(4 > 3) + (3 = 4) + 2 (evaluates to 3)
2. Calculator program:
For each line of input, your calculator program will begin by converting from infix
notation to postfix notation. Infix notation, shown in the example input lines above, is
the standard representation of mathematical equations. Postfix, or Reverse Polish
notation, is a mathematical notation where the mathematical operator comes after
both its operands. The two input lines in postfix notation would be:
4.7 3.0 5.5 * +
4 3 > 3 4 = + 2 +
The main parts of the calculator program are:
• Converting an input line into a postfix expression:
This step will use both a stack and queue in order to convert expressions from infix to
postfix notation. The stack and queue will be implemented by you, using your linked list
implementation from labs (do NOT use the predefined stack/queue classes available in
Java). Each value will be read from the input line, and dealt with in the following
manner:
1. If the value is an operand, add it into the queue immediately.
2. If the value is a close-parenthesis [‘)’], pop all the stack elements and add
them to the queue one by one until an open-parenthesis [‘(‘] is found.
3. If the value is an operator or (, pop everything on the stack and add them to
the queue one by one until you reach either an operator of lower precedence, or
a right-associative operator of equal precedence (eg, the logical NOT is a rightassociative
operator). Add the found operator to the queue, and push the
original operator onto the stack.
4. At the end of the input, pop everything that remains on the stack and add to
the queue one by one.
• When finished converting one statement into a queue in postfix notation, pass the
queue to the next step – the postfix expression evaluator. Evaluating the postfix
expression. This step will use the queue that was the result of the infix to postfix

conversion, and a stack.
Again, the stack and queue will be implemented by you, using your linked list
implementation from labs (do NOT use the predefined stack/queue classes available in
Java). The algorithm proceeds as follows:
1. Get the element at the front of the queue.
2. If the value is an operand, push it onto the stack.
3. If the value is an operator, pop the appropriate number of operands from the
stack (eg. 2 operands for multiplication, 1 for logical NOT). Perform the
operation, and push the resulting value onto the stack.
• Repeat steps 1-3 until the queue is empty. When it is, there should be a single value in
the stack – that value is the result of the calculation.
3. Output file:
For each calculation, print the result of the calculation to an output file, with one
numerical result per line.

__DEFINE_LIKE_SHARE__
رد مع اقتباس
إضافة رد

مواقع النشر (المفضلة)


تعليمات المشاركة
لا تستطيع إضافة مواضيع جديدة
لا تستطيع الرد على المواضيع
لا تستطيع إرفاق ملفات
لا تستطيع تعديل مشاركاتك

BB code is متاحة
كود [IMG] متاحة
كود HTML معطلة
Trackbacks are متاحة
Pingbacks are متاحة
Refbacks are متاحة


المواضيع المتشابهه
الموضوع كاتب الموضوع المنتدى مشاركات آخر مشاركة
[ طلب استايل ] السلام عليكم اخوانى الكرام اريد مساعدتكم بخصوص هذا الستيل ودمتم اخوانى محروم.كوم منتدى أخبار المواقع والمنتديات العربية والأجنبية 0 03-25-2014 02:50 PM
اخواني مساعدتكم ارجوكم الجهاز يطفى محروم.كوم منتدى أخبار المواقع والمنتديات العربية والأجنبية 0 08-07-2012 10:30 AM
[استفسار] اخواني واخواتي عندي استفسار ارجوكم ارجوكم محروم.كوم منتدى أخبار المواقع والمنتديات العربية والأجنبية 0 09-25-2011 05:00 PM
اخواني ارجوكم مساعدتكم مشكلة رهيبة في الجيل الرابع محروم.كوم منتدى أخبار المواقع والمنتديات العربية والأجنبية 0 07-14-2010 01:30 PM
سؤال لكم اخواني المشاغبين رحم الله والديكم ... ارجوكم ارجوكم ارجوكم محروم.كوم منتدى أخبار المواقع والمنتديات العربية والأجنبية 0 06-18-2009 01:10 AM


الساعة الآن 12:25 PM


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.5.2 TranZ By Almuhajir

RSS RSS 2.0 XML MAP HTML