
codeatsociallywired.wordpress.com
codeatsociallywired | Solving Problems Through CodeSolving Problems Through Code
http://codeatsociallywired.wordpress.com/
Solving Problems Through Code
http://codeatsociallywired.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
1.2 seconds
16x16
32x32
64x64
PAGES IN
THIS WEBSITE
15
SSL
EXTERNAL LINKS
23
SITE IP
192.0.78.13
LOAD TIME
1.204 sec
SCORE
6.2
codeatsociallywired | Solving Problems Through Code | codeatsociallywired.wordpress.com Reviews
https://codeatsociallywired.wordpress.com
Solving Problems Through Code
Tree Walks and Traversals | codeatsociallywired
https://codeatsociallywired.wordpress.com/2013/07/11/tree-walks-and-traversals
Solving Problems Through Code. Unique Characters →. July 11, 2013. Tree Walks and Traversals. If you are thinking where have you arrived and have no clue of whats going on then visit this page. Here is the lecture on tree walks and traversals by Prof Naveen Garg. 1 Recursive and Iterative Preorder Traversal of a Binary Tree. 2 Recursive and Iterative Inorder traversal of a Binary Tree. 3 Recursive and Iterative Postorder traversal of a Binary Tree. 8 Code for searching an element in a Binary Tree.
debanjanbhucs | codeatsociallywired
https://codeatsociallywired.wordpress.com/author/debanjanbhucs
Solving Problems Through Code. August 8, 2013. One is permutation of the other. Problem: Given two strings, write a method to decide if one is a permutation of the other. Def isPermutation(str1,str2): if len(str1)! Len(str2): return False else: str1Sorted = .join(sorted(str1) str2Sorted = .join(sorted(str2) if str1Sorted = str2Sorted: return True else: return False print isPermutation(god,dog) print isPermutation(god,logged) def isPermutation2(str1,str2): if len(str1)! August 8, 2013. July 11, 2013.
Unique Characters | codeatsociallywired
https://codeatsociallywired.wordpress.com/2013/08/08/unique-characters
Solving Problems Through Code. Tree Walks and Traversals. One is permutation of the other →. August 8, 2013. Posted in Data Structures and Algorithms. Problem: Implement an algorithm to determine if a string has all unique characters. What if you cannot use additional data structures? Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out.
Trees | codeatsociallywired
https://codeatsociallywired.wordpress.com/2013/07/11/trees
Solving Problems Through Code. Tree Walks and Traversals →. July 11, 2013. Posted in Binary Tree. If you are thinking where have you arrived and have no clue of whats going on then visit this page. Here is the lecture on general trees and binary trees by Prof Naveen Garg. Some very important properties of a binary tree assuming that the height of the tree is h are:. 1 The maximum number of nodes at each level of a binary tree is: 2. Where l is the level number. 2 The number of nodes n.
Identical Binary Trees | codeatsociallywired
https://codeatsociallywired.wordpress.com/2013/07/07/329
Solving Problems Through Code. Number of Leaves, Non Leaf Nodes and Nodes having one Child of a Binary Tree. Introduction to Data Structures and Algorithms →. July 7, 2013. Posted in Binary Tree. One thought on “ Identical Binary Trees. Pingback: Tree Walks and Traversals codeatsociallywired. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out.
TOTAL PAGES IN THIS WEBSITE
15
random number | Phoxis
https://phoxis.org/tag/random-number
Don't just think … Do it. Linux / Unix Shell. Tag Archives: random number. A generic Fisher-Yates Shuffle. April 21, 2015. It’s been a long time I have done any activity in this blog. I was going through some old stuffs and thought to post something. Today I will post a generic implementation for Fisher-Yates Shuffle. Although you can get the … Continue reading →. Plot histogram in terminal. May 4, 2013. Generating random numbers from Normal distribution in C. May 4, 2013. Linux / Unix Shell. Rod2012 on ...
Reviews | Phoxis
https://phoxis.org/category/gnulinuxfoss/reviews
Don't just think … Do it. Linux / Unix Shell. Reviews Of Different Software, Programming Libraries etc. Reviewing the GNUSim8085 (v1.3.7). August 14, 2011. This article reviews the GNUSim8085 (v1.3.7) a graphical simulator, assembler and debugger for the Intel 8085 microprocessor. The Intel 8085 is an 8-bit microprocessor that was launched by Intel in 1977 and hence is something that we have never seen … Continue reading →. Do Really ALL of us want to Reblog? June 3, 2010. May 27, 2010. February 14, 2010.
Others | Phoxis
https://phoxis.org/category/computer-science/others
Don't just think … Do it. Linux / Unix Shell. Some others. These posts are currently uncategorised. Number of trailing zeros in factorial of an integer. May 11, 2012. An integer n is given, the task is to find the number of trailing zeros in n! Finding qth real root of a real number. April 27, 2010. In this post we will see how to find n. Roots of a positive real number. We will use the Newton-Raphson method to deduce an iterative formula, and see its convergence. Continue reading →. April 16, 2010.
Phoxis | Don't just think … Do it. | Page 2
https://phoxis.org/page/2
Don't just think … Do it. Linux / Unix Shell. Newer posts →. Find pairs of numbers in an array with difference ‘k’. August 20, 2013. The problem statement is, an long array is given with. Elements, we need to find all the pairs of numbers in this long array which have a constant difference. I will post three methods. The first method is the brute force method and has a runtime complexity. The next method has runtime complexity. And the last one will have the runtime complexity. Continue reading →. Someti...
Programming | Phoxis
https://phoxis.org/tag/programming
Don't just think … Do it. Linux / Unix Shell. An overview of the PC Real Time Clock (RTC). January 2, 2016. Introduction Have you ever thought how the computer is able to display the correct time after you power on the system? There is a component called the RTC in the computer which stores this date and time information when the … Continue reading →. A generic Fisher-Yates Shuffle. April 21, 2015. May 20, 2014. Generate the process tree of a Linux system. November 25, 2013. September 13, 2013. In this p...
casual | Phoxis
https://phoxis.org/tag/casual
Don't just think … Do it. Linux / Unix Shell. A generic Fisher-Yates Shuffle. April 21, 2015. It’s been a long time I have done any activity in this blog. I was going through some old stuffs and thought to post something. Today I will post a generic implementation for Fisher-Yates Shuffle. Although you can get the … Continue reading →. May 20, 2014. Generate the process tree of a Linux system. November 25, 2013. Find process IDs of a running process by name. September 13, 2013. September 5, 2013. Today I...
Linux / Unix Shell | Phoxis
https://phoxis.org/category/computer-science/linux-unix-shell
Don't just think … Do it. Linux / Unix Shell. Category Archives: Linux / Unix Shell. Linux and Unix commands , and shell programming. Builtin Bash any base to decimal conversion. July 12, 2012. Bash has an interesting builtin feature to convert from any base to decimal, which is a part of bash’s arithmetic evaluation features. In this post i will quickly introduce you with this feature. Linux / Unix Shell. Simple script to restart services automatically when stopped in Fedora/Redhat. February 23, 2012.
C program | Phoxis
https://phoxis.org/tag/c-program
Don't just think … Do it. Linux / Unix Shell. Tag Archives: C program. An overview of the PC Real Time Clock (RTC). January 2, 2016. Introduction Have you ever thought how the computer is able to display the correct time after you power on the system? There is a component called the RTC in the computer which stores this date and time information when the … Continue reading →. A generic Fisher-Yates Shuffle. April 21, 2015. Find process IDs of a running process by name. September 13, 2013. August 21, 2013.
A generic Fisher-Yates Shuffle | Phoxis
https://phoxis.org/2015/04/21/a-generic-fisher-yates-shuffle
Don't just think … Do it. Linux / Unix Shell. An overview of the PC Real Time Clock (RTC) →. A generic Fisher-Yates Shuffle. April 21, 2015. It’s been a long time I have done any activity in this blog. I was going through some old stuffs and thought to post something. Today I will post a generic implementation for Fisher-Yates Shuffle. Although you can get the Fisher-Yates algorithm from wiki, still I am briefly explaining it. Let us assume that there is a array. In the illustration below the. Is the cur...
Coding Discussions | Phoxis
https://phoxis.org/category/computer-science/coding-discussions
Don't just think … Do it. Linux / Unix Shell. Category Archives: Coding Discussions. Different programming problems, and its solutions discussed with source codes and explanations. A generic Fisher-Yates Shuffle. April 21, 2015. It’s been a long time I have done any activity in this blog. I was going through some old stuffs and thought to post something. Today I will post a generic implementation for Fisher-Yates Shuffle. Although you can get the … Continue reading →. August 20, 2013. August 16, 2013.
TOTAL LINKS TO THIS WEBSITE
23
Codeator.net
This domain may be for sale. Backorder this Domain. This Domain Name Has Expired - Renewal Instructions.
Codeators - Coming Soon
We are Codeators.We build simple, clean and efficient standards-based web and mobile applications, from the heart of Pristina.
Default Parallels Plesk Panel Page
Web Server's Default Page. This page is generated by Parallels Plesk Panel. The leading hosting automation software. You see this page because there is no Web site at this address. You can do the following:. For more information please contact . Lets you run Windows on any Intel-based Mac without rebooting! The best solution for running Windows, Linux, or any of many other operating systems alongside OS X. The most efficient server virtualization technology.
Codeatria
We are clean and powerful. Meet With Creative Ideas. Responsive Web design is the approach that suggests that design and development should. Respond to the user’s behavior and environment based on screen size, platform and orientation. We reduce your costs. Apps are a constant reminder of your business. Apps increase customer engagement. Mobile apps provide a much faster alternative than mobile web browsing. Which can be built around your existing systems. Benifit of Custom application. 880 1916 587 399.
Code Atrocity
What's the opposite of code poetry? Every current and new php framework, ever. May 30, 2012, 3:57 pm. Here’s a (dramatized) conversation between a mere mortal php developer and one of the developers/gurus/ascetics/nerds that wrote/uses/has marital relations with a current or upcoming php framework:. 8220;Oh, you want a database connection? 8220;Why do I have to have all that before I can run a query on the database? 8220;What are you, a moron? Oh, and you want to run an *actual query*? 8220;And then here...
codeatsociallywired.wordpress.com
codeatsociallywired | Solving Problems Through Code
Solving Problems Through Code. August 8, 2013. One is permutation of the other. Problem: Given two strings, write a method to decide if one is a permutation of the other. Def isPermutation(str1,str2): if len(str1)! Len(str2): return False else: str1Sorted = .join(sorted(str1) str2Sorted = .join(sorted(str2) if str1Sorted = str2Sorted: return True else: return False print isPermutation(god,dog) print isPermutation(god,logged) def isPermutation2(str1,str2): if len(str1)! August 8, 2013. July 11, 2013.
My Opinion About World........!!!
My Opinion About World! This Blog is my space for share idea with a lot of people in internet.My blog contain about my opinion about worl especially in indonesia.Topic will be included are Computer and tegnology,Love,Poetry, Product,and Etc. PERHATIAN : Gunakan Browser [MOZILLA FIREFOX] Untuk membuka Blog Ini. Tuesday, March 27, 2007. Posted by Rizal.syarifuddin at 9:42 PM. Links to this post. Sunday, January 7, 2007. Google adalah website paling berbahaya di internet.Setiap orang mengenalnya. Web-shop y...
Under Construction - Code Attention
Our Website is Under Construction. We'll be here soon with a new website. Estimated Time Remaining.
codeattic.com - This website is for sale! - Code Resources and Information.
News - codeattitudes.org
Aristophil - Préservation et la valorisation. Participe sans cesse au développement/à l’expansion/à l’évolution/à la promotion de sa branche. Ce nouvel établissement dédié à la promotion de l'héritage culturel est inauguré par le groupe au capital de 30 millions d'euros au cours de l'année 2011. Incontournable dans le monde de l’art lié aux pièces anciennes. Animé par une une passion inconditionnelle et une vision désintéressée. Aristophil - De grande valeur et indéfinissables.
SOCIAL ENGAGEMENT