Posts

design algo

What is a singly linked list?   unidirectional  traversed in only one direction   single node contains data and a pointer  first node is called the head and last node is called tail  एक एकल लिंक की गई सूची क्या है?   दिशाहीन  केवल एक दिशा में ट्रैवर्स किया जा सकता है  सिंगल नोड में डेटा और एक पॉइंटर होता है  पहले नोड को सिर कहा जाता है तथा अंतिम नॉड को टेल कहा जाता है।

quick summary about c programming

Image
                    Q n A about fundamental  language of  programming or c programming   1)  why we need to programming or "c ide"? ans)   To solve a different problem  in an efficient and systematic way thats why we need a perfect tool for solving problem. 2)  which type of steps we needed to solve complex problem? ans;-  Steps should be followed to solve the problem that includes writing the algorithm and drawing the flowchart for the solution to the stated problem. 3) Is any type of specific method to find and arrange problem's solution in easiest way? ans: Top down design provides the way of handling the logical complexity and detail encountered in computer algorithm. It allows building solutions to problems in a stepwise fashion. In this way, specific and complex details of the implementation are encountered only at the stage when sufficient groundwork on the overall structure and relat...