Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C++

विद्युत सर्किट में तार की लंबाई को अनुकूलित करने के लिए C++ कार्यक्रम

यह इलेक्ट्रिकल सर्किट में वायर लेंथ को ऑप्टिमाइज़ करने के लिए एक C++ प्रोग्राम है।

एल्गोरिदम

Begin
   Function optimizeLength() :
   1) Declare a array dist[N].
   2) sptSet[i] will be true if component i is included in shortest
   path tree or shortest distance from src to i is finalized.
   3) Initialize all distances as INFINITE and stpSet[] as false
   4) Distance of source component from itself will be always 0.
   5) Run a for loop cnt = 0 to N-2, Find shortest path for all components.
      A) Pick the minimum distance component from the set of components not yet processed.
      B) Mark the picked component as processed.
      C) Update dist value of the adjacent components of the picked component.
      D) Update dist[v] only if is not in sptSet, there is an edge from
      u to v, and total weight of path from src to v through u is smaller than current value of dist[v].
End

उदाहरण

#include <limits.h>
#include <iostream>
using namespace std;
#define N 6
int minDist(int dist[], bool sptSet[]) { //to find component with minimum distance value.
   int min = INT_MAX, min_index;
   for (int v = 0; v < N; v++)
      if (sptSet[v] == false && dist[v] <= min)
         min = dist[v], min_index = v;
   return min_index;
}
void displaySolution(int dist[], int n) { // display the solution.
   cout << "Component\tDistance from other
   component\n";
   for (int i = 0; i < n; i++)
   printf("%d\t\t%d\n", i, dist[i]);
}
void optimizeLength(int g[N][N], int src) { //perform optimizeLength() function 
   int dist[N];
   bool sptSet[N];
   for (int i = 0; i < N; i++)
   dist[i] = INT_MAX, sptSet[i] = false;
   dist[src] = 0;
   //Find shortest path for all components.
   for (int cnt = 0; cnt < N - 1; cnt++) {
      //Pick the minimum distance component from the set of
      //components not yet processed.
      int u = minDist(dist, sptSet);
      //Mark the picked component as processed.
      sptSet[u] = true;
      //Update dist value of the adjacent components of the picked component.
      for (int v = 0; v < N; v++)
         if (!sptSet[v] && g[u][v] && dist[u] != INT_MAX &&  dist[u] + g[u][v] < dist[v])
      //Update dist[v] only if is not in sptSet, there is an edge from
      //u to v, and total weight of path from src to v through u is
      //smaller than current value of dist[v].
      dist[v] = dist[u] + g[u][v];
   }
   displaySolution(dist, N);
}
int main() {
   int g[N][N] = { { 0, 0, 6, 7, 0, 4}, { 4, 0, 8, 0, 1, 2 },
      {0, 9, 0, 2,0, 4 },{ 0, 0, 7, 0, 9, 5 }, { 0, 1, 0, 0, 6,7 }, { 6, 7, 0, 0, 2,3} };
   cout << "Enter the starting component: ";
   int s;
   cin >> s;
   optimizeLength(g, s);
   return 0;
}

आउटपुट

Enter the starting component: 4
Component Distance from other component
0 5
1 1
2 9
3 11
4 0
5 3

  1. सी ++ प्रोग्राम में बाइनरी सर्च?

    द्विआधारी खोज, जिसे अर्ध-अंतराल खोज, लॉगरिदमिक खोज या बाइनरी चॉप के रूप में भी जाना जाता है, एक खोज एल्गोरिथ्म है जो एक क्रमबद्ध सरणी के भीतर लक्ष्य मान की स्थिति का पता लगाता है। बाइनरी खोज लक्ष्य मान की तुलना सरणी के मध्य तत्व से करती है। यदि वे समान नहीं हैं, तो आधा जिसमें लक्ष्य झूठ नहीं बोल सकत

  1. सी ++ में एब्स्ट्रैक्शन

    एब्स्ट्रैक्शन में बाहरी दुनिया को केवल प्रासंगिक जानकारी प्रदान करना और पृष्ठभूमि विवरण छिपाना शामिल है। यह प्रोग्रामिंग के लिए इंटरफेस और कार्यान्वयन के पृथक्करण पर निर्भर करता है। कक्षाएं सी ++ में अमूर्तता प्रदान करती हैं। वे बाहरी दुनिया को डेटा में हेरफेर करने और बाकी वर्ग संरचना को अपने पास र

  1. सी ++ प्रोग्राम एक स्ट्रिंग की लंबाई का पता लगाने के लिए

    एक स्ट्रिंग एक आयामी वर्ण सरणी है जिसे एक शून्य वर्ण द्वारा समाप्त किया जाता है। स्ट्रिंग की लंबाई शून्य वर्ण से पहले स्ट्रिंग में वर्णों की संख्या है। उदाहरण के लिए। char str[] = “The sky is blue”; Number of characters in the above string = 15 एक स्ट्रिंग की लंबाई ज्ञात करने के लिए एक