docid
stringlengths 25
45
| url
stringlengths 14
987
| title
stringlengths 0
45k
| headings
stringlengths 1
259k
| segment
stringlengths 2
10k
| start_char
int64 0
9.96k
| end_char
int64 2
10k
|
---|---|---|---|---|---|---|
msmarco_v2.1_doc_01_1669214293#7_2448297980 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| Postfix, on the other hand, requires that its operators come after the corresponding operands. A few more examples should help to make this a bit clearer (see Table 2 ). A + B * C would be written as + A * B C in prefix. The multiplication operator comes immediately before the operands B and C, denoting that * has precedence over +. The addition operator then appears before the A and the result of the multiplication. In postfix, the expression would be A B C * +. Again, the order of operations is preserved since the * appears immediately after the B and the C, denoting that * has precedence, with + coming after. Although the operators moved and now appear either before or after their respective operands, the order of the operands stayed exactly the same relative to one another. Table 2: Examples of Infix, Prefix, and Postfix ¶
Infix Expression
Prefix Expression
Postfix Expression
A + B
+ A B
A B +
A + B * C
+ A * B C
A B C * +
Now consider the infix expression (A + B) * C. Recall that in this case, infix requires the parentheses to force the performance of the addition before the multiplication. | 3,092 | 4,204 |
msmarco_v2.1_doc_01_1669214293#8_2448299730 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| In postfix, the expression would be A B C * +. Again, the order of operations is preserved since the * appears immediately after the B and the C, denoting that * has precedence, with + coming after. Although the operators moved and now appear either before or after their respective operands, the order of the operands stayed exactly the same relative to one another. Table 2: Examples of Infix, Prefix, and Postfix ¶
Infix Expression
Prefix Expression
Postfix Expression
A + B
+ A B
A B +
A + B * C
+ A * B C
A B C * +
Now consider the infix expression (A + B) * C. Recall that in this case, infix requires the parentheses to force the performance of the addition before the multiplication. However, when A + B was written in prefix, the addition operator was simply moved before the operands, + A B. The result of this operation becomes the first operand for the multiplication. The multiplication operator is moved in front of the entire expression, giving us * + A B C. Likewise, in postfix A B + forces the addition to happen first. The multiplication can be done to that result and the remaining operand C. The proper postfix expression is then A B + C *. Consider these three expressions again (see Table 3 ). Something very important has happened. | 3,512 | 4,768 |
msmarco_v2.1_doc_01_1669214293#9_2448301623 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| However, when A + B was written in prefix, the addition operator was simply moved before the operands, + A B. The result of this operation becomes the first operand for the multiplication. The multiplication operator is moved in front of the entire expression, giving us * + A B C. Likewise, in postfix A B + forces the addition to happen first. The multiplication can be done to that result and the remaining operand C. The proper postfix expression is then A B + C *. Consider these three expressions again (see Table 3 ). Something very important has happened. Where did the parentheses go? Why don’t we need them in prefix and postfix? The answer is that the operators are no longer ambiguous with respect to the operands that they work on. Only infix notation requires the additional symbols. The order of operations within prefix and postfix expressions is completely determined by the position of the operator and nothing else. | 4,205 | 5,139 |
msmarco_v2.1_doc_01_1669214293#10_2448303185 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| Where did the parentheses go? Why don’t we need them in prefix and postfix? The answer is that the operators are no longer ambiguous with respect to the operands that they work on. Only infix notation requires the additional symbols. The order of operations within prefix and postfix expressions is completely determined by the position of the operator and nothing else. In many ways, this makes infix the least desirable notation to use. Table 3: An Expression with Parentheses ¶
Infix Expression
Prefix Expression
Postfix Expression
(A + B) * C
* + A B C
A B + C *
Table 4 shows some additional examples of infix expressions and the equivalent prefix and postfix expressions. Be sure that you understand how they are equivalent in terms of the order of the operations being performed. Table 4: | 4,769 | 5,564 |
msmarco_v2.1_doc_01_1669214293#11_2448304621 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| In many ways, this makes infix the least desirable notation to use. Table 3: An Expression with Parentheses ¶
Infix Expression
Prefix Expression
Postfix Expression
(A + B) * C
* + A B C
A B + C *
Table 4 shows some additional examples of infix expressions and the equivalent prefix and postfix expressions. Be sure that you understand how they are equivalent in terms of the order of the operations being performed. Table 4: Additional Examples of Infix, Prefix, and Postfix ¶
Infix Expression
Prefix Expression
Postfix Expression
A + B * C + D
+ + A * B C D
A B C * + D +
(A + B) * (C + D)
* + A B + C D
A B + C D + *
A * B + C * D
+ * A B * C D
A B * C D * +
A + B + C + D
+ + + A B C D
A B + C + D +
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
So far, we have used ad hoc methods to convert between infix expressions and the equivalent prefix and postfix expression notations. As you might expect, there are algorithmic ways to perform the conversion that allow any expression of any complexity to be correctly transformed. The first technique that we will consider uses the notion of a fully parenthesized expression that was discussed earlier. Recall that A + B * C can be written as (A + (B * C)) to show explicitly that the multiplication has precedence over the addition. | 5,140 | 6,438 |
msmarco_v2.1_doc_01_1669214293#12_2448306582 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| Additional Examples of Infix, Prefix, and Postfix ¶
Infix Expression
Prefix Expression
Postfix Expression
A + B * C + D
+ + A * B C D
A B C * + D +
(A + B) * (C + D)
* + A B + C D
A B + C D + *
A * B + C * D
+ * A B * C D
A B * C D * +
A + B + C + D
+ + + A B C D
A B + C + D +
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
So far, we have used ad hoc methods to convert between infix expressions and the equivalent prefix and postfix expression notations. As you might expect, there are algorithmic ways to perform the conversion that allow any expression of any complexity to be correctly transformed. The first technique that we will consider uses the notion of a fully parenthesized expression that was discussed earlier. Recall that A + B * C can be written as (A + (B * C)) to show explicitly that the multiplication has precedence over the addition. On closer observation, however, you can see that each parenthesis pair also denotes the beginning and the end of an operand pair with the corresponding operator in the middle. Look at the right parenthesis in the subexpression (B * C) above. If we were to move the multiplication symbol to that position and remove the matching left parenthesis, giving us B C *, we would in effect have converted the subexpression to postfix notation. If the addition operator were also moved to its corresponding right parenthesis position and the matching left parenthesis were removed, the complete postfix expression would result (see Figure 6 ). Figure 6: | 5,565 | 7,083 |
msmarco_v2.1_doc_01_1669214293#13_2448308751 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| On closer observation, however, you can see that each parenthesis pair also denotes the beginning and the end of an operand pair with the corresponding operator in the middle. Look at the right parenthesis in the subexpression (B * C) above. If we were to move the multiplication symbol to that position and remove the matching left parenthesis, giving us B C *, we would in effect have converted the subexpression to postfix notation. If the addition operator were also moved to its corresponding right parenthesis position and the matching left parenthesis were removed, the complete postfix expression would result (see Figure 6 ). Figure 6: Moving Operators to the Right for Postfix Notation ¶
If we do the same thing but instead of moving the symbol to the position of the right parenthesis, we move it to the left, we get prefix notation (see Figure 7 ). The position of the parenthesis pair is actually a clue to the final position of the enclosed operator. Figure 7: Moving Operators to the Left for Prefix Notation ¶
So in order to convert an expression, no matter how complex, to either prefix or postfix notation, fully parenthesize the expression using the order of operations. Then move the enclosed operator to the position of either the left or the right parenthesis depending on whether you want prefix or postfix notation. | 6,439 | 7,779 |
msmarco_v2.1_doc_01_1669214293#14_2448310727 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| Moving Operators to the Right for Postfix Notation ¶
If we do the same thing but instead of moving the symbol to the position of the right parenthesis, we move it to the left, we get prefix notation (see Figure 7 ). The position of the parenthesis pair is actually a clue to the final position of the enclosed operator. Figure 7: Moving Operators to the Left for Prefix Notation ¶
So in order to convert an expression, no matter how complex, to either prefix or postfix notation, fully parenthesize the expression using the order of operations. Then move the enclosed operator to the position of either the left or the right parenthesis depending on whether you want prefix or postfix notation. Here is a more complex expression: ( A + B) * C - (D - E) * (F + G). Figure 8 shows the conversion to postfix and prefix notations. Figure 8: Converting a Complex Expression to Prefix and Postfix Notations ¶
4.9.2. | 7,084 | 7,993 |
msmarco_v2.1_doc_01_1669214293#15_2448312279 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| Here is a more complex expression: ( A + B) * C - (D - E) * (F + G). Figure 8 shows the conversion to postfix and prefix notations. Figure 8: Converting a Complex Expression to Prefix and Postfix Notations ¶
4.9.2. General Infix-to-Postfix Conversion ¶
We need to develop an algorithm to convert any infix expression to a postfix expression. To do this we will look closer at the conversion process. Consider once again the expression A + B * C. As shown above, A B C * + is the postfix equivalent. We have already noted that the operands A, B, and C stay in their relative positions. It is only the operators that change position. | 7,779 | 8,410 |
msmarco_v2.1_doc_01_1669214293#16_2448313546 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| General Infix-to-Postfix Conversion ¶
We need to develop an algorithm to convert any infix expression to a postfix expression. To do this we will look closer at the conversion process. Consider once again the expression A + B * C. As shown above, A B C * + is the postfix equivalent. We have already noted that the operands A, B, and C stay in their relative positions. It is only the operators that change position. Let’s look again at the operators in the infix expression. The first operator that appears from left to right is +. However, in the postfix expression, + is at the end since the next operator, *, has precedence over addition. The order of the operators in the original expression is reversed in the resulting postfix expression. As we process the expression, the operators have to be saved somewhere since their corresponding right operands are not seen yet. | 7,994 | 8,869 |
msmarco_v2.1_doc_01_1669214293#17_2448315056 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| Let’s look again at the operators in the infix expression. The first operator that appears from left to right is +. However, in the postfix expression, + is at the end since the next operator, *, has precedence over addition. The order of the operators in the original expression is reversed in the resulting postfix expression. As we process the expression, the operators have to be saved somewhere since their corresponding right operands are not seen yet. Also, the order of these saved operators may need to be reversed due to their precedence. This is the case with the addition and the multiplication in this example. Since the addition operator comes before the multiplication operator and has lower precedence, it needs to appear after the multiplication operator is used. Because of this reversal of order, it makes sense to consider using a stack to keep the operators until they are needed. What about (A + B) * C? | 8,411 | 9,336 |
msmarco_v2.1_doc_01_1669214293#18_2448316610 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| Also, the order of these saved operators may need to be reversed due to their precedence. This is the case with the addition and the multiplication in this example. Since the addition operator comes before the multiplication operator and has lower precedence, it needs to appear after the multiplication operator is used. Because of this reversal of order, it makes sense to consider using a stack to keep the operators until they are needed. What about (A + B) * C? Recall that A B + C * is the postfix equivalent. Again, processing this infix expression from left to right, we see + first. In this case, when we see *, + has already been placed in the result expression because it has precedence over * by virtue of the parentheses. We can now start to see how the conversion algorithm will work. When we see a left parenthesis, we will save it to denote that another operator of high precedence will be coming. | 8,870 | 9,783 |
msmarco_v2.1_doc_01_1669214293#19_2448318147 | http://interactivepython.org/runestone/static/pythonds/BasicDS/InfixPrefixandPostfixExpressions.html | 4.9. Infix, Prefix and Postfix Expressions — Problem Solving with Algorithms and Data Structures | 4.9.
Infix, Prefix and Postfix Expressions
¶
4.9. Infix, Prefix and Postfix Expressions ¶
4.9.1. Conversion of Infix Expressions to Prefix and Postfix ¶
4.9.2. General Infix-to-Postfix Conversion ¶
4.9.3. Postfix Evaluation ¶
Self Check
| Recall that A B + C * is the postfix equivalent. Again, processing this infix expression from left to right, we see + first. In this case, when we see *, + has already been placed in the result expression because it has precedence over * by virtue of the parentheses. We can now start to see how the conversion algorithm will work. When we see a left parenthesis, we will save it to denote that another operator of high precedence will be coming. That operator will need to wait until the corresponding right parenthesis appears to denote its position (recall the fully parenthesized technique). When that right parenthesis does appear, the operator can be popped | 9,337 | 10,000 |
msmarco_v2.1_doc_01_1669234236#0_2448319435 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures
Problem Solving with Algorithms and Data Structures using Python ¶
By Brad Miller and David Ranum, Luther College
Assignments
There is a wonderful collection of YouTube videos recorded by Gerry Jenkins to support all of the chapters in this text. 1. Introduction
1.1. Objectives
1.2. Getting Started
1.3. What Is Computer Science? 1.4. What Is Programming? 1.5. Why Study Data Structures and Abstract Data Types? | 0 | 531 |
msmarco_v2.1_doc_01_1669234236#1_2448320518 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| What Is Computer Science? 1.4. What Is Programming? 1.5. Why Study Data Structures and Abstract Data Types? 1.6. Why Study Algorithms? 1.7. Review of Basic Python
1.8. Getting Started with Data
1.8.1. | 424 | 624 |
msmarco_v2.1_doc_01_1669234236#2_2448321257 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| 1.6. Why Study Algorithms? 1.7. Review of Basic Python
1.8. Getting Started with Data
1.8.1. Built-in Atomic Data Types
1.8.2. Built-in Collection Data Types
1.9. Input and Output
1.9.1. String Formatting
1.10. Control Structures
1.11. | 531 | 767 |
msmarco_v2.1_doc_01_1669234236#3_2448322036 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Built-in Atomic Data Types
1.8.2. Built-in Collection Data Types
1.9. Input and Output
1.9.1. String Formatting
1.10. Control Structures
1.11. Exception Handling
1.12. Defining Functions
1.13. Object-Oriented Programming in Python: Defining Classes
1.13.1. A Fraction Class
1.13.2. | 625 | 906 |
msmarco_v2.1_doc_01_1669234236#4_2448322863 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Exception Handling
1.12. Defining Functions
1.13. Object-Oriented Programming in Python: Defining Classes
1.13.1. A Fraction Class
1.13.2. Inheritance: Logic Gates and Circuits
1.14. Summary
1.15. Key Terms
1.16. Discussion Questions
1.17. | 768 | 1,007 |
msmarco_v2.1_doc_01_1669234236#5_2448323648 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Inheritance: Logic Gates and Circuits
1.14. Summary
1.15. Key Terms
1.16. Discussion Questions
1.17. Programming Exercises
2. A Proper Class
2.1. Writing a Proper Python Class
2.1.1. A Basic implementation of the MSDie class
2.2. Making your Class Comparable
3. | 907 | 1,168 |
msmarco_v2.1_doc_01_1669234236#6_2448324456 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Programming Exercises
2. A Proper Class
2.1. Writing a Proper Python Class
2.1.1. A Basic implementation of the MSDie class
2.2. Making your Class Comparable
3. Analysis
3.1. Objectives
3.2. What Is Algorithm Analysis? 3.3. Big-O Notation
3.4. | 1,008 | 1,251 |
msmarco_v2.1_doc_01_1669234236#7_2448325246 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Analysis
3.1. Objectives
3.2. What Is Algorithm Analysis? 3.3. Big-O Notation
3.4. An Anagram Detection Example
3.4.1. Solution 1: Checking Off
3.4.2. Solution 2: Sort and Compare
3.4.3. | 1,169 | 1,355 |
msmarco_v2.1_doc_01_1669234236#8_2448325977 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| An Anagram Detection Example
3.4.1. Solution 1: Checking Off
3.4.2. Solution 2: Sort and Compare
3.4.3. Solution 3: Brute Force
3.4.4. Solution 4: Count and Compare
3.5. Performance of Python Data Structures
3.6. | 1,252 | 1,464 |
msmarco_v2.1_doc_01_1669234236#9_2448326734 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Solution 3: Brute Force
3.4.4. Solution 4: Count and Compare
3.5. Performance of Python Data Structures
3.6. Lists
3.7. Dictionaries
3.8. Summary
3.9. Key Terms
3.10. Discussion Questions
3.11. | 1,356 | 1,549 |
msmarco_v2.1_doc_01_1669234236#10_2448327474 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Lists
3.7. Dictionaries
3.8. Summary
3.9. Key Terms
3.10. Discussion Questions
3.11. Programming Exercises
4. Basic Data Structures
4.1. Objectives
4.2. What Are Linear Structures? 4.3. | 1,465 | 1,650 |
msmarco_v2.1_doc_01_1669234236#11_2448328207 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Programming Exercises
4. Basic Data Structures
4.1. Objectives
4.2. What Are Linear Structures? 4.3. What is a Stack? 4.4. The Stack Abstract Data Type
4.5. Implementing a Stack in Python
4.6. Simple Balanced Parentheses
4.7. | 1,550 | 1,775 |
msmarco_v2.1_doc_01_1669234236#12_2448328978 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| What is a Stack? 4.4. The Stack Abstract Data Type
4.5. Implementing a Stack in Python
4.6. Simple Balanced Parentheses
4.7. Balanced Symbols (A General Case)
4.8. Converting Decimal Numbers to Binary Numbers
4.9. Infix, Prefix and Postfix Expressions
4.9.1. Conversion of Infix Expressions to Prefix and Postfix
4.9.2. General Infix-to-Postfix Conversion
4.9.3. | 1,651 | 2,013 |
msmarco_v2.1_doc_01_1669234236#13_2448329888 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Balanced Symbols (A General Case)
4.8. Converting Decimal Numbers to Binary Numbers
4.9. Infix, Prefix and Postfix Expressions
4.9.1. Conversion of Infix Expressions to Prefix and Postfix
4.9.2. General Infix-to-Postfix Conversion
4.9.3. Postfix Evaluation
4.10. What Is a Queue? 4.11. The Queue Abstract Data Type
4.12. Implementing a Queue in Python
4.13. | 1,776 | 2,133 |
msmarco_v2.1_doc_01_1669234236#14_2448330793 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Postfix Evaluation
4.10. What Is a Queue? 4.11. The Queue Abstract Data Type
4.12. Implementing a Queue in Python
4.13. Simulation: Hot Potato
4.14. Simulation: Printing Tasks
4.14.1. Main Simulation Steps
4.14.2. | 2,014 | 2,227 |
msmarco_v2.1_doc_01_1669234236#15_2448331552 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Simulation: Hot Potato
4.14. Simulation: Printing Tasks
4.14.1. Main Simulation Steps
4.14.2. Python Implementation
4.14.3. Discussion
4.15. What Is a Deque? 4.16. The Deque Abstract Data Type
4.17. | 2,134 | 2,332 |
msmarco_v2.1_doc_01_1669234236#16_2448332296 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Python Implementation
4.14.3. Discussion
4.15. What Is a Deque? 4.16. The Deque Abstract Data Type
4.17. Implementing a Deque in Python
4.18. Palindrome-Checker
4.19. Lists
4.20. The Unordered List Abstract Data Type
4.21. Implementing an Unordered List: | 2,228 | 2,482 |
msmarco_v2.1_doc_01_1669234236#17_2448333097 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Implementing a Deque in Python
4.18. Palindrome-Checker
4.19. Lists
4.20. The Unordered List Abstract Data Type
4.21. Implementing an Unordered List: Linked Lists
4.21.1. The Node Class
4.21.2. The Unordered List Class
4.22. The Ordered List Abstract Data Type
4.23. Implementing an Ordered List
4.23.1. | 2,333 | 2,636 |
msmarco_v2.1_doc_01_1669234236#18_2448333949 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Linked Lists
4.21.1. The Node Class
4.21.2. The Unordered List Class
4.22. The Ordered List Abstract Data Type
4.23. Implementing an Ordered List
4.23.1. Analysis of Linked Lists
4.24. Summary
4.25. Key Terms
4.26. Discussion Questions
4.27. Programming Exercises
5. | 2,483 | 2,749 |
msmarco_v2.1_doc_01_1669234236#19_2448334765 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Analysis of Linked Lists
4.24. Summary
4.25. Key Terms
4.26. Discussion Questions
4.27. Programming Exercises
5. Recursion
5.1. Objectives
5.2. What Is Recursion? 5.3. Calculating the Sum of a List of Numbers
5.4. | 2,637 | 2,850 |
msmarco_v2.1_doc_01_1669234236#20_2448335526 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Recursion
5.1. Objectives
5.2. What Is Recursion? 5.3. Calculating the Sum of a List of Numbers
5.4. The Three Laws of Recursion
5.5. Converting an Integer to a String in Any Base
5.6. Stack Frames: Implementing Recursion
5.7. Introduction: | 2,750 | 2,990 |
msmarco_v2.1_doc_01_1669234236#21_2448336312 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| The Three Laws of Recursion
5.5. Converting an Integer to a String in Any Base
5.6. Stack Frames: Implementing Recursion
5.7. Introduction: Visualizing Recursion
5.8. Sierpinski Triangle
5.9. Complex Recursive Problems
5.10. Tower of Hanoi
5.11. Exploring a Maze
5.12. | 2,851 | 3,119 |
msmarco_v2.1_doc_01_1669234236#22_2448337128 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Visualizing Recursion
5.8. Sierpinski Triangle
5.9. Complex Recursive Problems
5.10. Tower of Hanoi
5.11. Exploring a Maze
5.12. Dynamic Programming
5.13. Summary
5.14. Key Terms
5.15. Discussion Questions
5.16. Glossary
5.17. | 2,991 | 3,217 |
msmarco_v2.1_doc_01_1669234236#23_2448337904 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Dynamic Programming
5.13. Summary
5.14. Key Terms
5.15. Discussion Questions
5.16. Glossary
5.17. Programming Exercises
6. Sorting and Searching
6.1. Objectives
6.2. Searching
6.3. The Sequential Search
6.3.1. | 3,120 | 3,329 |
msmarco_v2.1_doc_01_1669234236#24_2448338663 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Programming Exercises
6. Sorting and Searching
6.1. Objectives
6.2. Searching
6.3. The Sequential Search
6.3.1. Analysis of Sequential Search
6.4. The Binary Search
6.4.1. Analysis of Binary Search
6.5. Hashing
6.5.1. Hash Functions
6.5.2. | 3,218 | 3,457 |
msmarco_v2.1_doc_01_1669234236#25_2448339452 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Analysis of Sequential Search
6.4. The Binary Search
6.4.1. Analysis of Binary Search
6.5. Hashing
6.5.1. Hash Functions
6.5.2. Collision Resolution
6.5.3. Implementing the Map Abstract Data Type
6.5.4. Analysis of Hashing
6.6. Sorting
6.7. The Bubble Sort
6.8. | 3,330 | 3,591 |
msmarco_v2.1_doc_01_1669234236#26_2448340263 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Collision Resolution
6.5.3. Implementing the Map Abstract Data Type
6.5.4. Analysis of Hashing
6.6. Sorting
6.7. The Bubble Sort
6.8. The Selection Sort
6.9. The Insertion Sort
6.10. The Shell Sort
6.11. The Merge Sort
6.12. The Quick Sort
6.13. | 3,458 | 3,703 |
msmarco_v2.1_doc_01_1669234236#27_2448341058 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| The Selection Sort
6.9. The Insertion Sort
6.10. The Shell Sort
6.11. The Merge Sort
6.12. The Quick Sort
6.13. Summary
6.14. Key Terms
6.15. Discussion Questions
6.16. Programming Exercises
7. Trees and Tree Algorithms
7.1. | 3,592 | 3,816 |
msmarco_v2.1_doc_01_1669234236#28_2448341832 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Summary
6.14. Key Terms
6.15. Discussion Questions
6.16. Programming Exercises
7. Trees and Tree Algorithms
7.1. Objectives
7.2. Examples of Trees
7.3. Vocabulary and Definitions
7.4. List of Lists Representation
7.5. Nodes and References
7.6. | 3,704 | 3,947 |
msmarco_v2.1_doc_01_1669234236#29_2448342625 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Objectives
7.2. Examples of Trees
7.3. Vocabulary and Definitions
7.4. List of Lists Representation
7.5. Nodes and References
7.6. Parse Tree
7.7. Tree Traversals
7.8. Priority Queues with Binary Heaps
7.9. Binary Heap Operations
7.10. Binary Heap Implementation
7.10.1. | 3,817 | 4,087 |
msmarco_v2.1_doc_01_1669234236#30_2448343445 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Parse Tree
7.7. Tree Traversals
7.8. Priority Queues with Binary Heaps
7.9. Binary Heap Operations
7.10. Binary Heap Implementation
7.10.1. The Structure Property
7.10.2. The Heap Order Property
7.10.3. Heap Operations
7.11. Binary Search Trees
7.12. Search Tree Operations
7.13. | 3,948 | 4,227 |
msmarco_v2.1_doc_01_1669234236#31_2448344274 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| The Structure Property
7.10.2. The Heap Order Property
7.10.3. Heap Operations
7.11. Binary Search Trees
7.12. Search Tree Operations
7.13. Search Tree Implementation
7.14. Search Tree Analysis
7.15. Balanced Binary Search Trees
7.16. AVL Tree Performance
7.17. AVL Tree Implementation
7.18. | 4,088 | 4,379 |
msmarco_v2.1_doc_01_1669234236#32_2448345115 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Search Tree Implementation
7.14. Search Tree Analysis
7.15. Balanced Binary Search Trees
7.16. AVL Tree Performance
7.17. AVL Tree Implementation
7.18. Summary of Map ADT Implementations
7.19. Summary
7.20. Key Terms
7.21. Discussion Questions
7.22. Programming Exercises
8. | 4,228 | 4,502 |
msmarco_v2.1_doc_01_1669234236#33_2448345939 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Summary of Map ADT Implementations
7.19. Summary
7.20. Key Terms
7.21. Discussion Questions
7.22. Programming Exercises
8. Graphs and Graph Algorithms
8.1. Objectives
8.2. Vocabulary and Definitions
8.3. The Graph Abstract Data Type
8.4. An Adjacency Matrix
8.5. | 4,380 | 4,642 |
msmarco_v2.1_doc_01_1669234236#34_2448346751 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Graphs and Graph Algorithms
8.1. Objectives
8.2. Vocabulary and Definitions
8.3. The Graph Abstract Data Type
8.4. An Adjacency Matrix
8.5. An Adjacency List
8.6. Implementation
8.7. The Word Ladder Problem
8.8. Building the Word Ladder Graph
8.9. Implementing Breadth First Search
8.10. | 4,503 | 4,790 |
msmarco_v2.1_doc_01_1669234236#35_2448347588 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| An Adjacency List
8.6. Implementation
8.7. The Word Ladder Problem
8.8. Building the Word Ladder Graph
8.9. Implementing Breadth First Search
8.10. Breadth First Search Analysis
8.11. The Knight’s Tour Problem
8.12. Building the Knight’s Tour Graph
8.13. Implementing Knight’s Tour
8.14. Knight’s Tour Analysis
8.15. | 4,643 | 4,959 |
msmarco_v2.1_doc_01_1669234236#36_2448348474 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Breadth First Search Analysis
8.11. The Knight’s Tour Problem
8.12. Building the Knight’s Tour Graph
8.13. Implementing Knight’s Tour
8.14. Knight’s Tour Analysis
8.15. General Depth First Search
8.16. Depth First Search Analysis
8.17. Topological Sorting
8.18. Strongly Connected Components
8.19. Shortest Path Problems
8.20. | 4,791 | 5,117 |
msmarco_v2.1_doc_01_1669234236#37_2448349370 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| General Depth First Search
8.16. Depth First Search Analysis
8.17. Topological Sorting
8.18. Strongly Connected Components
8.19. Shortest Path Problems
8.20. Dijkstra’s Algorithm
8.21. Analysis of Dijkstra’s Algorithm
8.22. Prim’s Spanning Tree Algorithm
8.23. Summary
8.24. Key Terms
8.25. | 4,960 | 5,250 |
msmarco_v2.1_doc_01_1669234236#38_2448350225 | http://interactivepython.org/runestone/static/pythonds/index.html | Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures | Problem Solving with Algorithms and Data Structures using Python
¶
Problem Solving with Algorithms and Data Structures using Python ¶
Acknowledgements ¶
Indices and tables ¶
| Dijkstra’s Algorithm
8.21. Analysis of Dijkstra’s Algorithm
8.22. Prim’s Spanning Tree Algorithm
8.23. Summary
8.24. Key Terms
8.25. Discussion Questions
8.26. Programming Exercises
Acknowledgements ¶
We are very grateful to Franklin Beedle Publishers for allowing us to make this interactive textbook freely available. This online version is dedicated to the memory of our first editor, Jim Leisy, who wanted us to “change the world.” Indices and tables ¶
Index
Search Page
Problem Solving with Algorithms and Data Structures using Python by Bradley N. Miller, David L. Ranum is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. You have attempted 1 of 1 activities on this page | 5,118 | 5,845 |
msmarco_v2.1_doc_01_1669240816#0_2448351538 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier. In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it. By Alan Peppard | Staff Writer
Photos By Steven Visneau | Special Contributor
Published August 27, 2015
F or 31-year-old Jenna Owens, her seven years on the Kidd Kraddick Morning Show have been her own Apollo 13. When Kraddick picked her to be the youngest co-host of his nationally syndicated morning radio show, she was on a rocket trip to the moon. A nationally syndicated TV show, DISH Nation, soon followed. Then in 2013, things went shockingly, devastatingly wrong. On July 27, a nauseated and sweaty Kraddick left Owens standing on the first tee at the Timberlane Country Club in a New Orleans suburb and returned to his air-conditioned limousine bus. There, he collapsed and died. He was 53. Without its leader, the Kraddick show was marked for extinction. | 0 | 1,148 |
msmarco_v2.1_doc_01_1669240816#1_2448353671 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| Then in 2013, things went shockingly, devastatingly wrong. On July 27, a nauseated and sweaty Kraddick left Owens standing on the first tee at the Timberlane Country Club in a New Orleans suburb and returned to his air-conditioned limousine bus. There, he collapsed and died. He was 53. Without its leader, the Kraddick show was marked for extinction. But through talent and perseverance, Kellie Rasberry, Big Al Mack, Jose “J-Si” Chavez and Owens have carried the Kidd Kraddick Morning Show to new ratings heights. No longer just the team’s ingenue, Owens is now a seasoned counterpuncher, providing wry insight into the morning commute in 68 radio markets nationwide. Jenna Owens behind the scenes photo shoot - YouTube
The Dallas Morning News
107K subscribers
Subscribe
Jenna Owens behind the scenes photo shoot
Watch later
Copy link
Info
Shopping
Tap to unmute
If playback doesn't begin shortly, try restarting your device. You're signed out
Videos you watch may be added to the TV's watch history and influence TV recommendations. To avoid this, cancel and sign in to YouTube on your computer. | 797 | 1,895 |
msmarco_v2.1_doc_01_1669240816#2_2448355760 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| But through talent and perseverance, Kellie Rasberry, Big Al Mack, Jose “J-Si” Chavez and Owens have carried the Kidd Kraddick Morning Show to new ratings heights. No longer just the team’s ingenue, Owens is now a seasoned counterpuncher, providing wry insight into the morning commute in 68 radio markets nationwide. Jenna Owens behind the scenes photo shoot - YouTube
The Dallas Morning News
107K subscribers
Subscribe
Jenna Owens behind the scenes photo shoot
Watch later
Copy link
Info
Shopping
Tap to unmute
If playback doesn't begin shortly, try restarting your device. You're signed out
Videos you watch may be added to the TV's watch history and influence TV recommendations. To avoid this, cancel and sign in to YouTube on your computer. Cancel
Confirm
More videos
More videos
Switch camera
Share
Include playlist
An error occurred while retrieving sharing information. Please try again later. 0:00
0:00
0:00 / 2:10
Live
•
ALAN PEPPARD: I once heard Walter Cronkite say that his fame made visiting a brothel difficult. When do you find fame inconvenient? | 1,149 | 2,212 |
msmarco_v2.1_doc_01_1669240816#3_2448357832 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| Cancel
Confirm
More videos
More videos
Switch camera
Share
Include playlist
An error occurred while retrieving sharing information. Please try again later. 0:00
0:00
0:00 / 2:10
Live
•
ALAN PEPPARD: I once heard Walter Cronkite say that his fame made visiting a brothel difficult. When do you find fame inconvenient? JENNA OWENS: The gynecologist. That was actually my first taste of fame, though taste is probably not the choice of words to use there. The first time I was ever recognized was mid-exam. The doctor could hear me but not see me. | 1,895 | 2,440 |
msmarco_v2.1_doc_01_1669240816#4_2448359359 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| JENNA OWENS: The gynecologist. That was actually my first taste of fame, though taste is probably not the choice of words to use there. The first time I was ever recognized was mid-exam. The doctor could hear me but not see me. She slid over and looked up and said, “Oh, my God, now I know who you are.” I walked out of the office and thought, “This isn’t what I thought fame would be like.” I always assumed it would be when you’re dressed up looking your best at dinner. It’s a lesson. If you’re in a bad mood or don’t feel like putting on a bra, don’t go out. | 2,212 | 2,775 |
msmarco_v2.1_doc_01_1669240816#5_2448360937 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| She slid over and looked up and said, “Oh, my God, now I know who you are.” I walked out of the office and thought, “This isn’t what I thought fame would be like.” I always assumed it would be when you’re dressed up looking your best at dinner. It’s a lesson. If you’re in a bad mood or don’t feel like putting on a bra, don’t go out. AP: We last talked in depth one year after Kidd Kraddick died. You were visibly shaken. Now, it’s been two years. The show isn’t merely succeeding, it’s conquering. | 2,441 | 2,940 |
msmarco_v2.1_doc_01_1669240816#6_2448362467 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| AP: We last talked in depth one year after Kidd Kraddick died. You were visibly shaken. Now, it’s been two years. The show isn’t merely succeeding, it’s conquering. Are you healing? JO: To be honest, I have never been happier in my life and never felt better than I do at this moment. I had a lot of grief. I lost my mentor — one of my closest confidantes in life. | 2,775 | 3,140 |
msmarco_v2.1_doc_01_1669240816#7_2448363817 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| Are you healing? JO: To be honest, I have never been happier in my life and never felt better than I do at this moment. I had a lot of grief. I lost my mentor — one of my closest confidantes in life. And then, I had to put my dog, my best friend, to sleep. It almost felt like too much to handle. It’s weird to have such a public job and feel such darkness. But just putting one foot in front of the other, you get through those things. I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything. | 2,941 | 3,471 |
msmarco_v2.1_doc_01_1669240816#8_2448365328 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| And then, I had to put my dog, my best friend, to sleep. It almost felt like too much to handle. It’s weird to have such a public job and feel such darkness. But just putting one foot in front of the other, you get through those things. I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything. Advertisement
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.” Jenna Owens
AP: How long did you have your pug Max? JO: I had Max for 11 years. | 3,141 | 3,661 |
msmarco_v2.1_doc_01_1669240816#9_2448366841 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| Advertisement
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.” Jenna Owens
AP: How long did you have your pug Max? JO: I had Max for 11 years. I got him in Chicago on the side of a highway out of the back of a van and took him to college. Our relationship was intense. He became a celebrity. He was on the TV show. I only started dressing him up in costume in his senior years. | 3,471 | 3,896 |
msmarco_v2.1_doc_01_1669240816#10_2448368248 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| I got him in Chicago on the side of a highway out of the back of a van and took him to college. Our relationship was intense. He became a celebrity. He was on the TV show. I only started dressing him up in costume in his senior years. He got diabetes and he was just days away from dying. I had to give him two shots a day. I wanted him to make it to his 11th birthday, and he made it. We threw him a denim-on-denim party. Then, my three best girlfriends offered to go with me to put him to sleep. | 3,662 | 4,159 |
msmarco_v2.1_doc_01_1669240816#11_2448369712 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| He got diabetes and he was just days away from dying. I had to give him two shots a day. I wanted him to make it to his 11th birthday, and he made it. We threw him a denim-on-denim party. Then, my three best girlfriends offered to go with me to put him to sleep. First, we took him to McDonald’s and he got a burger and fries. He was so happy. AP: You have a previous life as a jock. Why did that end? | 3,897 | 4,298 |
msmarco_v2.1_doc_01_1669240816#12_2448371085 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| First, we took him to McDonald’s and he got a burger and fries. He was so happy. AP: You have a previous life as a jock. Why did that end? JO: I don’t think there was anything in this life I was better at than playing soccer. I was such a tomboy, you would not have recognized me. I decided to stop playing when I started visiting colleges with offers for full scholarships. I got very burned out. | 4,160 | 4,557 |
msmarco_v2.1_doc_01_1669240816#13_2448372459 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| JO: I don’t think there was anything in this life I was better at than playing soccer. I was such a tomboy, you would not have recognized me. I decided to stop playing when I started visiting colleges with offers for full scholarships. I got very burned out. I had the ability but not the heart. At some point, I wanted a career and a job. I didn’t see a future for myself playing soccer. AP: You and I had a recent conversation about Charles Manson. | 4,298 | 4,749 |
msmarco_v2.1_doc_01_1669240816#14_2448373886 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| I had the ability but not the heart. At some point, I wanted a career and a job. I didn’t see a future for myself playing soccer. AP: You and I had a recent conversation about Charles Manson. Your encyclopedic knowledge was startling. What’s the fascination with psychos and serial killers? JO: I think evil is more interesting than good. Everyone has the potential to be good. | 4,558 | 4,935 |
msmarco_v2.1_doc_01_1669240816#15_2448375240 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| Your encyclopedic knowledge was startling. What’s the fascination with psychos and serial killers? JO: I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people. I’ve always had a fascination with psychology. When I was a child, my dad had every Stephen King book. I loved them. I loved horror movies, but I was so young, I couldn’t say horror. | 4,750 | 5,160 |
msmarco_v2.1_doc_01_1669240816#16_2448376632 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| The evil is what is so foreign to people. I’ve always had a fascination with psychology. When I was a child, my dad had every Stephen King book. I loved them. I loved horror movies, but I was so young, I couldn’t say horror. I would say, “I wanna go to a whore movie.” If I didn’t have this career, I would have gone back to school to study criminal psychology. Advertisement
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.” | 4,936 | 5,438 |
msmarco_v2.1_doc_01_1669240816#17_2448378137 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| I would say, “I wanna go to a whore movie.” If I didn’t have this career, I would have gone back to school to study criminal psychology. Advertisement
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.” Jenna Owens
AP: Your workday doesn’t end when you go off the air at 10 a.m. After that, you tape a nationally syndicated TV show, DISH Nation. What’s the biggest misconception about your schedule? JO: That we roll in, turn on those microphones, gab and gossip for four hours then say, “Bye, see you tomorrow.” | 5,161 | 5,748 |
msmarco_v2.1_doc_01_1669240816#18_2448379738 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| Jenna Owens
AP: Your workday doesn’t end when you go off the air at 10 a.m. After that, you tape a nationally syndicated TV show, DISH Nation. What’s the biggest misconception about your schedule? JO: That we roll in, turn on those microphones, gab and gossip for four hours then say, “Bye, see you tomorrow.” Sounding effortless takes quite a lot of effort. That’s the goal, though — to sit around like we’re having a conversation at the breakfast table and you are a part of it. But there’s definitely a lot of work that goes into that. AP: Kidd was known as “No Sleep Kidd” and it certainly didn’t help his health. | 5,438 | 6,056 |
msmarco_v2.1_doc_01_1669240816#19_2448381378 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| Sounding effortless takes quite a lot of effort. That’s the goal, though — to sit around like we’re having a conversation at the breakfast table and you are a part of it. But there’s definitely a lot of work that goes into that. AP: Kidd was known as “No Sleep Kidd” and it certainly didn’t help his health. You get up at 4 a.m. Do you worry about your sleep and its effects on your health? JO: I’ve never in my life been a worrier, and I absolutely worry about what the sleep schedule does to me. I can feel it. I can feel it every day. | 5,749 | 6,286 |
msmarco_v2.1_doc_01_1669240816#20_2448382922 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| You get up at 4 a.m. Do you worry about your sleep and its effects on your health? JO: I’ve never in my life been a worrier, and I absolutely worry about what the sleep schedule does to me. I can feel it. I can feel it every day. The most common question I get is “What time do you have to get up?” Now, I just tell people, “Yesterday.” AP: Kellie Rasberry and Big Al Mack have been on the show for two decades. You were hired to bring the young person's perspective and add some dating drama. | 6,057 | 6,550 |
msmarco_v2.1_doc_01_1669240816#21_2448384407 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| The most common question I get is “What time do you have to get up?” Now, I just tell people, “Yesterday.” AP: Kellie Rasberry and Big Al Mack have been on the show for two decades. You were hired to bring the young person's perspective and add some dating drama. To some extent you’ve lived your dating life in public. How’s that working for you? JO: I would never blame the job for my lack of a relationship or any problems I’ve had. I think it’s more being a fiercely independent, opinionated, successful woman. | 6,287 | 6,801 |
msmarco_v2.1_doc_01_1669240816#22_2448385928 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| To some extent you’ve lived your dating life in public. How’s that working for you? JO: I would never blame the job for my lack of a relationship or any problems I’ve had. I think it’s more being a fiercely independent, opinionated, successful woman. It’s very hard to find a man who can deal with that. I can’t tell you how many guys say, “I want a girl like you,” but when it comes down to it, I don’t think that’s the case. AP: On your Instagram account jennasrack, you have such beautiful shots of you in different fashions. A refined aesthetic sense is not something one associates with a radio personality. | 6,551 | 7,163 |
msmarco_v2.1_doc_01_1669240816#23_2448387557 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| It’s very hard to find a man who can deal with that. I can’t tell you how many guys say, “I want a girl like you,” but when it comes down to it, I don’t think that’s the case. AP: On your Instagram account jennasrack, you have such beautiful shots of you in different fashions. A refined aesthetic sense is not something one associates with a radio personality. Where does yours come from? JO: I’ve always had very good radar on what is going to be fashionable, but I also take into consideration what’s flattering. Everything comes down to how does this express my personality. For jennasrack, I give all the credit to a couple of my best friends who think I am a star. | 6,802 | 7,472 |
msmarco_v2.1_doc_01_1669240816#24_2448389234 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| Where does yours come from? JO: I’ve always had very good radar on what is going to be fashionable, but I also take into consideration what’s flattering. Everything comes down to how does this express my personality. For jennasrack, I give all the credit to a couple of my best friends who think I am a star. They put me on this platform that is so unwarranted. It’s supposed to be tongue-in-cheek. It’s captured through the eyes of a guy. The jennasrack name was created by my best guy friend. Who else would come up with that but a guy? | 7,164 | 7,702 |
msmarco_v2.1_doc_01_1669240816#25_2448390759 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| They put me on this platform that is so unwarranted. It’s supposed to be tongue-in-cheek. It’s captured through the eyes of a guy. The jennasrack name was created by my best guy friend. Who else would come up with that but a guy? The account is tied in to liketoknow.it, [Dallas-based] Amber Venz’s brilliant concept for linking up fashion bloggers with retailers. Advertisement
“I would never blame the job for my lack of a relationship or any problems I’ve had.” Jenna Owens
AP: There are four of you in that booth every morning. J-Si is the only one who’s married. | 7,473 | 8,040 |
msmarco_v2.1_doc_01_1669240816#26_2448392330 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| The account is tied in to liketoknow.it, [Dallas-based] Amber Venz’s brilliant concept for linking up fashion bloggers with retailers. Advertisement
“I would never blame the job for my lack of a relationship or any problems I’ve had.” Jenna Owens
AP: There are four of you in that booth every morning. J-Si is the only one who’s married. Do marriage and morning radio mix? JO: How much am I going to deflect this question? It’s hard. You get tired earlier. | 7,703 | 8,159 |
msmarco_v2.1_doc_01_1669240816#27_2448393785 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| Do marriage and morning radio mix? JO: How much am I going to deflect this question? It’s hard. You get tired earlier. You go to bed earlier. You get up earlier. It’s definitely hard to find someone who can live on the same schedule. I’m not negative enough yet to think I won’t have a successful relationship because of my job. I’m not concerned about being married, but I am excited about sharing my life with someone. | 8,041 | 8,461 |
msmarco_v2.1_doc_01_1669240816#28_2448395197 | http://interactives.dallasnews.com/2015/jenna-owens/ | Q&AP with Kidd Kraddick Morning Show co-host Jenna Owens | Hung Up
Q& AP
Hung Up
on Jenna Owens
She lost her mentor and her dog, Max, but The Kidd Kraddick Morning Show co-host says she’s never been happier.
In the debut of FD’s new feature Q&AP, writer Alan Peppard talks to Jenna Owens about relationships, her aborted soccer career and why she’ll be buying you dinner instead of cooking it.
“I woke up one day and felt there’s nothing else to lose, and I felt at peace with everything.”
“I think evil is more interesting than good. Everyone has the potential to be good. The evil is what is so foreign to people.”
“I would never blame the job for my lack of a relationship or any problems I’ve had.”
| You go to bed earlier. You get up earlier. It’s definitely hard to find someone who can live on the same schedule. I’m not negative enough yet to think I won’t have a successful relationship because of my job. I’m not concerned about being married, but I am excited about sharing my life with someone. I’m not going to be cooking you dinner, but I can buy you dinner. | 8,160 | 8,527 |
msmarco_v2.1_doc_01_1669250710#0_2448396556 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| A look inside of the new Parkland Hospital in Dallas
Parkland’s state-of-the-art, $1.3 billion facility, built in five years, has the same mission as the original did when it opened in 1894: Provide the best possible medical care for Dallas County’s poorest residents. ( Tom Fox/Staff Photographer)
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology. By Sherry Jacobson | Staff Writer
Published August 14, 2015
At 6 a.m. Thursday, the emergency room doors will close for good at Parkland Memorial Hospital, signaling the end of an era in Dallas County. Across the street, the doors of a new emergency department will open, welcoming patients for the first time to a hospital twice the size and light years ahead in technology and comfort. One by one, about 600 patients will move out of their shared, claustrophobic rooms in the old Parkland and be pushed across Harry Hines Boulevard in a bed or wheelchair to larger, private rooms in the new Parkland. The two hospitals are only 1,000 feet apart, but the patients’ journey will span more than half a century in terms of technology and comfort. The current facility was built in the 1950s and 1960s to serve half the patients who crowd inside it today. The new hospital, which is more than twice the size, will better accommodate the 300,000 people expected to show up annually for care. If they end up waiting, they will be much more comfortable. | 0 | 1,575 |
msmarco_v2.1_doc_01_1669250710#1_2448399018 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| One by one, about 600 patients will move out of their shared, claustrophobic rooms in the old Parkland and be pushed across Harry Hines Boulevard in a bed or wheelchair to larger, private rooms in the new Parkland. The two hospitals are only 1,000 feet apart, but the patients’ journey will span more than half a century in terms of technology and comfort. The current facility was built in the 1950s and 1960s to serve half the patients who crowd inside it today. The new hospital, which is more than twice the size, will better accommodate the 300,000 people expected to show up annually for care. If they end up waiting, they will be much more comfortable. “This is the first public hospital to be built based on the size of the need and not the size of the political will,” Dr. Ron Anderson, Parkland’s longtime CEO, said in 2008, when the project won overwhelming support in a $747 million bond election. It was Anderson’s dream to build a new safety-net hospital for Dallas County residents. He hoped to complete the project before his retirement, but lost his job in 2011. He died last September. Construction of the new hospital spanned five years, during which the current Parkland was mired in serious regulatory problems. | 915 | 2,148 |
msmarco_v2.1_doc_01_1669250710#2_2448401137 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| “This is the first public hospital to be built based on the size of the need and not the size of the political will,” Dr. Ron Anderson, Parkland’s longtime CEO, said in 2008, when the project won overwhelming support in a $747 million bond election. It was Anderson’s dream to build a new safety-net hospital for Dallas County residents. He hoped to complete the project before his retirement, but lost his job in 2011. He died last September. Construction of the new hospital spanned five years, during which the current Parkland was mired in serious regulatory problems. As hospital officials struggled to satisfy the government, the new Parkland would become a symbol of hope and renewal for the county hospital’s future. “People deserve quality health care in a modern, dignified setting, and that’s what new Parkland provides,” said Dallas County Judge Clay Jenkins. “ Most of the people who use Parkland are working but can’t afford insurance.” Every 60 years or so, Dallas gets a new public hospital that promises improved care on the day it opens. The current facility was hailed in 1954 for its specialized treatment areas, including iron lungs and rocking beds for polio patients. | 1,575 | 2,765 |
msmarco_v2.1_doc_01_1669250710#3_2448403245 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| As hospital officials struggled to satisfy the government, the new Parkland would become a symbol of hope and renewal for the county hospital’s future. “People deserve quality health care in a modern, dignified setting, and that’s what new Parkland provides,” said Dallas County Judge Clay Jenkins. “ Most of the people who use Parkland are working but can’t afford insurance.” Every 60 years or so, Dallas gets a new public hospital that promises improved care on the day it opens. The current facility was hailed in 1954 for its specialized treatment areas, including iron lungs and rocking beds for polio patients. The first Parkland, built in 1894, was praised for having electricity, a backyard cistern and enough beds to handle 220 charity patients. It was nestled in a park-like setting, the inspiration for the hospital’s name. Parkland’s growing footprint
New Parkland reincarnates the tree-filled campus of the first hospital, but it surrounds a 17-story building chock full of the latest digital technology. In the lobby, visitors and patients will consult an electronic kiosk to guide them to clinics or patient rooms. In the intensive care units, beds will alert caregivers when something’s wrong with patients. | 2,149 | 3,372 |
msmarco_v2.1_doc_01_1669250710#4_2448405383 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| The first Parkland, built in 1894, was praised for having electricity, a backyard cistern and enough beds to handle 220 charity patients. It was nestled in a park-like setting, the inspiration for the hospital’s name. Parkland’s growing footprint
New Parkland reincarnates the tree-filled campus of the first hospital, but it surrounds a 17-story building chock full of the latest digital technology. In the lobby, visitors and patients will consult an electronic kiosk to guide them to clinics or patient rooms. In the intensive care units, beds will alert caregivers when something’s wrong with patients. And newborns will be protected from abduction by monitors attached to their umbilical cords. “We’re taking a quantum leap in technology,” said Joseph Longo, Parkland’s vice president of information technology. “ And that’s the biggest challenge as we open this new hospital. We don’t want to overwhelm the staff, which means many of these bells and whistles will be added later, on demand.” The technology, which cost about $80 million, is intended to improve patient care, streamline record-keeping, enhance security and enable Parkland to operate more efficiently. | 2,765 | 3,938 |
msmarco_v2.1_doc_01_1669250710#5_2448407475 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| And newborns will be protected from abduction by monitors attached to their umbilical cords. “We’re taking a quantum leap in technology,” said Joseph Longo, Parkland’s vice president of information technology. “ And that’s the biggest challenge as we open this new hospital. We don’t want to overwhelm the staff, which means many of these bells and whistles will be added later, on demand.” The technology, which cost about $80 million, is intended to improve patient care, streamline record-keeping, enhance security and enable Parkland to operate more efficiently. The total cost of the 2.8-million-square-foot campus will exceed $1.3 billion. But the mission of Dallas County’s public hospital remains as simple today as when the first Parkland opened 121 years ago: Provide the best possible medical care for the county’s poorest residents. “It’s going to be a better hospital in a number of ways,” said Dr. Fred Cerise, who inherited the construction project last year as Parkland’s new chief executive officer. He predicts the new building will improve patient care, offer safer conditions and provide a more dignified setting for visiting family members. | 3,373 | 4,533 |
msmarco_v2.1_doc_01_1669250710#6_2448409569 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| The total cost of the 2.8-million-square-foot campus will exceed $1.3 billion. But the mission of Dallas County’s public hospital remains as simple today as when the first Parkland opened 121 years ago: Provide the best possible medical care for the county’s poorest residents. “It’s going to be a better hospital in a number of ways,” said Dr. Fred Cerise, who inherited the construction project last year as Parkland’s new chief executive officer. He predicts the new building will improve patient care, offer safer conditions and provide a more dignified setting for visiting family members. In 2007, a blue-ribbon panel of civic and health leaders recommended building a new Parkland, noting the worn-out conditions of the current facility, overloaded not only with too many patients but also technologies that were not envisioned when it opened. The 2008 bond election committed local taxpayers to pay for about 60 percent of the new hospital’s construction costs. An additional $350 million came from Parkland’s reserve funds and $150 million from private donations. WHAT THEY SAY
for quotes
Dr. Ron Anderson
“I'd like to have been using a new facility for the last several years. [ But] this is a huge decision for the community. | 3,939 | 5,174 |
msmarco_v2.1_doc_01_1669250710#7_2448411716 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| In 2007, a blue-ribbon panel of civic and health leaders recommended building a new Parkland, noting the worn-out conditions of the current facility, overloaded not only with too many patients but also technologies that were not envisioned when it opened. The 2008 bond election committed local taxpayers to pay for about 60 percent of the new hospital’s construction costs. An additional $350 million came from Parkland’s reserve funds and $150 million from private donations. WHAT THEY SAY
for quotes
Dr. Ron Anderson
“I'd like to have been using a new facility for the last several years. [ But] this is a huge decision for the community. It's better to do it right than do it fast.” Dr. Ron Anderson, Parkland CEO 1982-2011
WHAT’S INSIDE
The next generation of Parkland patients will be ushered into private rooms that are nearly 90 percent larger than the room shared by two patients in the current hospital. The room gives a third of its space to the patient, leaving enough room near the door for caregivers to do their work, while the far side offers space for visitors to share a sofa, chair and picture window. A bathroom nearby has a shower, a new amenity for Parkland patients. “We tried to create a healing environment where people feel they are cared for on every level,” said Gena English, the hospital’s senior program manager for interior design. “ | 4,533 | 5,898 |
msmarco_v2.1_doc_01_1669250710#8_2448413994 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| It's better to do it right than do it fast.” Dr. Ron Anderson, Parkland CEO 1982-2011
WHAT’S INSIDE
The next generation of Parkland patients will be ushered into private rooms that are nearly 90 percent larger than the room shared by two patients in the current hospital. The room gives a third of its space to the patient, leaving enough room near the door for caregivers to do their work, while the far side offers space for visitors to share a sofa, chair and picture window. A bathroom nearby has a shower, a new amenity for Parkland patients. “We tried to create a healing environment where people feel they are cared for on every level,” said Gena English, the hospital’s senior program manager for interior design. “ We wanted to show that a hospital doesn’t have to be cold and sterile.” The 260-square-foot hospital room will be easier to clean than its cramped 140-square-foot predecessor, she said, plus enhancing privacy and infection control efforts. “ Patient floors are rubber, which holds down acoustical noise and causes less foot-fatigue for the nurses. The hospital also is 100 percent wax-free. I fought hard for that.” | 5,175 | 6,312 |
msmarco_v2.1_doc_01_1669250710#9_2448416048 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| We wanted to show that a hospital doesn’t have to be cold and sterile.” The 260-square-foot hospital room will be easier to clean than its cramped 140-square-foot predecessor, she said, plus enhancing privacy and infection control efforts. “ Patient floors are rubber, which holds down acoustical noise and causes less foot-fatigue for the nurses. The hospital also is 100 percent wax-free. I fought hard for that.” Parkland is known for many things, both good and bad — including its overcrowded emergency department, where patients can wait long hours to get basic medical care, its highly valued trauma services and a comprehensive burn unit. Its leaders are hoping the new campus will improve all that. “This building is designed to accommodate these processes rather than the other way around,” said Dr. Alexander Eastman, the hospital’s trauma medical director. Advertisement
Select a section of the hospital for details
Emergency Dept. Psychiatric unit
Burn center
WISH
Kitchen
Park
LARGER EMERGENCY DEPARTMENT
An emergency patient exam room
Parkland’s main ER, the busiest spot in the hospital system, will be five times larger in the new building. | 5,898 | 7,053 |
msmarco_v2.1_doc_01_1669250710#10_2448418121 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| Parkland is known for many things, both good and bad — including its overcrowded emergency department, where patients can wait long hours to get basic medical care, its highly valued trauma services and a comprehensive burn unit. Its leaders are hoping the new campus will improve all that. “This building is designed to accommodate these processes rather than the other way around,” said Dr. Alexander Eastman, the hospital’s trauma medical director. Advertisement
Select a section of the hospital for details
Emergency Dept. Psychiatric unit
Burn center
WISH
Kitchen
Park
LARGER EMERGENCY DEPARTMENT
An emergency patient exam room
Parkland’s main ER, the busiest spot in the hospital system, will be five times larger in the new building. Patients will be greeted by a nurse and ushered into a triage evaluation. Anyone needing immediate treatment is sent to one of the 110 private-exam rooms. “If it’s a true emergency, the patient goes straight back to a treatment area in a private room,” said Dr. John Pease, Parkland’s chief of emergency services. The goal is to take no longer than six or seven hours from the time a patient walks in the ER to get treated and is released or admitted to the hospital. New Parkland Emergency Services - YouTube
The Dallas Morning News
107K subscribers
Subscribe
New Parkland Emergency Services
Watch later
Copy link
Info
Shopping
Tap to unmute
If playback doesn't begin shortly, try restarting your device. | 6,312 | 7,759 |
msmarco_v2.1_doc_01_1669250710#11_2448420495 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| Patients will be greeted by a nurse and ushered into a triage evaluation. Anyone needing immediate treatment is sent to one of the 110 private-exam rooms. “If it’s a true emergency, the patient goes straight back to a treatment area in a private room,” said Dr. John Pease, Parkland’s chief of emergency services. The goal is to take no longer than six or seven hours from the time a patient walks in the ER to get treated and is released or admitted to the hospital. New Parkland Emergency Services - YouTube
The Dallas Morning News
107K subscribers
Subscribe
New Parkland Emergency Services
Watch later
Copy link
Info
Shopping
Tap to unmute
If playback doesn't begin shortly, try restarting your device. You're signed out
Videos you watch may be added to the TV's watch history and influence TV recommendations. To avoid this, cancel and sign in to YouTube on your computer. Cancel
Confirm
More videos
More videos
Switch camera
Share
Include playlist
An error occurred while retrieving sharing information. Please try again later. 0:00
0:00
0:00 / 1:04
Live
•
RECONFIGURED PSYCHIATRIC UNIT
The psychiatric inpatient room has features to keep people from committing suicide, such as the shortened, solid hinge door, the collapsible shower curtain and the unbreakable bathroom mirror. | 7,054 | 8,338 |
msmarco_v2.1_doc_01_1669250710#12_2448422692 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| You're signed out
Videos you watch may be added to the TV's watch history and influence TV recommendations. To avoid this, cancel and sign in to YouTube on your computer. Cancel
Confirm
More videos
More videos
Switch camera
Share
Include playlist
An error occurred while retrieving sharing information. Please try again later. 0:00
0:00
0:00 / 1:04
Live
•
RECONFIGURED PSYCHIATRIC UNIT
The psychiatric inpatient room has features to keep people from committing suicide, such as the shortened, solid hinge door, the collapsible shower curtain and the unbreakable bathroom mirror. Parkland’s troubled psychiatric unit also has been reconfigured in the new hospital. The emphasis is on patient safety in the psych ER, where patients will be monitored closely as they undergo treatment in 18 reclining chairs. The unit handles about 7,000 patients annually. Celeste Johnson, director of nursing psychiatric services, said she has worked to eliminate the suicide risk within the unit, including the new 14-bed inpatient unit. Her main concern was to remove ligature risks such as door hinges or knobs that could support a belt or piece of cloth in a suicide attempt. | 7,759 | 8,921 |
msmarco_v2.1_doc_01_1669250710#13_2448424741 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| Parkland’s troubled psychiatric unit also has been reconfigured in the new hospital. The emphasis is on patient safety in the psych ER, where patients will be monitored closely as they undergo treatment in 18 reclining chairs. The unit handles about 7,000 patients annually. Celeste Johnson, director of nursing psychiatric services, said she has worked to eliminate the suicide risk within the unit, including the new 14-bed inpatient unit. Her main concern was to remove ligature risks such as door hinges or knobs that could support a belt or piece of cloth in a suicide attempt. New Parkland Hospital's Psychiatric Services - YouTube
The Dallas Morning News
107K subscribers
Subscribe
New Parkland Hospital's Psychiatric Services
Info
Shopping
Tap to unmute
If playback doesn't begin shortly, try restarting your device. You're signed out
Videos you watch may be added to the TV's watch history and influence TV recommendations. To avoid this, cancel and sign in to YouTube on your computer. Cancel
Confirm
More videos
More videos
Switch camera
Share
Include playlist
An error occurred while retrieving sharing information. Please try again later. | 8,338 | 9,490 |
msmarco_v2.1_doc_01_1669250710#14_2448426777 | http://interactives.dallasnews.com/2015/new-parkland/ | A look inside of the new Parkland Hospital in Dallas | A new world of care
NEW PARKLAND HOSPITAL
A new world of care
Dallas County’s new $1.3 billion Parkland hospital, twice as big as its predecessor, opens with a promise to improve patient care, comfort and efficiency with state-of-the-art technology.
Parkland’s growing footprint
WHAT THEY SAY
for quotes
“I'd like to have been using a new facility for the last several years. [But] this is a huge decision for the community. It's better to do it right than do it fast.”
WHAT’S INSIDE
Advertisement
Select a section of the hospital for details
LARGER EMERGENCY DEPARTMENT
| New Parkland Hospital's Psychiatric Services - YouTube
The Dallas Morning News
107K subscribers
Subscribe
New Parkland Hospital's Psychiatric Services
Info
Shopping
Tap to unmute
If playback doesn't begin shortly, try restarting your device. You're signed out
Videos you watch may be added to the TV's watch history and influence TV recommendations. To avoid this, cancel and sign in to YouTube on your computer. Cancel
Confirm
More videos
More videos
Switch camera
Share
Include playlist
An error occurred while retrieving sharing information. Please try again later. Watch later
Share
Copy link
0:00
0:00
/
Live
•
BETTER CARE FOR BURN PATIENTS
An adjustable, climate controlled burn patient bed in the regional burn center ICU room
Click to view more images: Parkland’s regional burn center, the second-largest civilian burn center in the U.S., will have an 18-bed acute-care unit and a nearby outpatient treatment area. “It’s going to give us so much more flexibility,” said Kathleen A. Doherty, director of nursing and surgical services in the burn unit, which handles about | 8,921 | 10,000 |
msmarco_v2.1_doc_01_1669267267#0_2448428771 | http://interactives.dallasnews.com/2015/spacebody/ | How space travel affects the human body | Preparing bodies for liftoff
Preparing bodies for liftoff
NASA doctors studying travel that can take toll on organs, skin, bones
FIVE THINGS TO KNOW ABOUT THE EFFECT OF SPACE TRAVEL ON THE BODY
1 There’s a thing called “space motion sickness.”
Vestibular system
2 Bones become thinner.
3 Organs move.
Advertisement
4 The heart weakens and becomes rounder.
5 Skin becomes thinner.
FIVE THINGS TO KNOW ABOUT THE TWINS STUDY
1 Will Scott Kelly’s genes change in space?
2 What will happen to the bugs in Scott’s gut?
3 Will spaceflight damage arteries?
4 Will Scott’s eyeballs change shape?
5 Does the brain work differently on a long space flight?
EXERCISING IN SPACE
| How space travel affects the human body
YouTube
Tap to unmute
If playback doesn't begin shortly, try restarting your device. You're signed out
Videos you watch may be added to the TV's watch history and influence TV recommendations. To avoid this, cancel and sign in to YouTube on your computer. Cancel
Confirm
More videos
More videos
Switch camera
Share
Include playlist
An error occurred while retrieving sharing information. Please try again later. 0:00
0:00
0:00 / 2:54
Live
•
Preparing bodies for liftoff
NASA doctors studying travel that can take toll on organs, skin, bones
By Seema Yasmin | Staff Writer
Published June 26, 2015
Thin skin, floppy muscles, misshaped eyeballs and a weak heart. Those are just some of the effects a trip to space can have on the human body. But what we know about the physical toll of zero gravity has only been learned from short trips to space — anywhere from a few days to six months. For the first time, an American astronaut, Scott Kelly, has boarded the International Space Station for a yearlong mission. His trip is part of NASA’s plan to send humans to Mars by the 2030s, a journey that could take nine months. | 0 | 1,157 |
msmarco_v2.1_doc_01_1669267267#1_2448430912 | http://interactives.dallasnews.com/2015/spacebody/ | How space travel affects the human body | Preparing bodies for liftoff
Preparing bodies for liftoff
NASA doctors studying travel that can take toll on organs, skin, bones
FIVE THINGS TO KNOW ABOUT THE EFFECT OF SPACE TRAVEL ON THE BODY
1 There’s a thing called “space motion sickness.”
Vestibular system
2 Bones become thinner.
3 Organs move.
Advertisement
4 The heart weakens and becomes rounder.
5 Skin becomes thinner.
FIVE THINGS TO KNOW ABOUT THE TWINS STUDY
1 Will Scott Kelly’s genes change in space?
2 What will happen to the bugs in Scott’s gut?
3 Will spaceflight damage arteries?
4 Will Scott’s eyeballs change shape?
5 Does the brain work differently on a long space flight?
EXERCISING IN SPACE
| 0:00
0:00
0:00 / 2:54
Live
•
Preparing bodies for liftoff
NASA doctors studying travel that can take toll on organs, skin, bones
By Seema Yasmin | Staff Writer
Published June 26, 2015
Thin skin, floppy muscles, misshaped eyeballs and a weak heart. Those are just some of the effects a trip to space can have on the human body. But what we know about the physical toll of zero gravity has only been learned from short trips to space — anywhere from a few days to six months. For the first time, an American astronaut, Scott Kelly, has boarded the International Space Station for a yearlong mission. His trip is part of NASA’s plan to send humans to Mars by the 2030s, a journey that could take nine months. We visited doctors at NASA Johnson Space Center to learn more. Here’s what we know about the impact of spaceflight on the body, what we hope to learn from Kelly’s mission and what NASA doctors are doing to keep astronauts healthy in space. FIVE THINGS TO KNOW ABOUT THE EFFECT OF SPACE TRAVEL ON THE BODY
1 There’s a thing called “space motion sickness.” Vestibular system
Semi-circular
canals
Otholiths
Imagine feeling nauseated and lightheaded as you travel 17,100 mph on the International Space Station. To make matters worse, if you don’t throw up into a specially designed bag, your vomit could float back toward you and hit you in the face. | 451 | 1,804 |
msmarco_v2.1_doc_01_1669267267#2_2448433274 | http://interactives.dallasnews.com/2015/spacebody/ | How space travel affects the human body | Preparing bodies for liftoff
Preparing bodies for liftoff
NASA doctors studying travel that can take toll on organs, skin, bones
FIVE THINGS TO KNOW ABOUT THE EFFECT OF SPACE TRAVEL ON THE BODY
1 There’s a thing called “space motion sickness.”
Vestibular system
2 Bones become thinner.
3 Organs move.
Advertisement
4 The heart weakens and becomes rounder.
5 Skin becomes thinner.
FIVE THINGS TO KNOW ABOUT THE TWINS STUDY
1 Will Scott Kelly’s genes change in space?
2 What will happen to the bugs in Scott’s gut?
3 Will spaceflight damage arteries?
4 Will Scott’s eyeballs change shape?
5 Does the brain work differently on a long space flight?
EXERCISING IN SPACE
| We visited doctors at NASA Johnson Space Center to learn more. Here’s what we know about the impact of spaceflight on the body, what we hope to learn from Kelly’s mission and what NASA doctors are doing to keep astronauts healthy in space. FIVE THINGS TO KNOW ABOUT THE EFFECT OF SPACE TRAVEL ON THE BODY
1 There’s a thing called “space motion sickness.” Vestibular system
Semi-circular
canals
Otholiths
Imagine feeling nauseated and lightheaded as you travel 17,100 mph on the International Space Station. To make matters worse, if you don’t throw up into a specially designed bag, your vomit could float back toward you and hit you in the face. Nausea and vomiting are triggered by sudden entry into microgravity where there’s no sense of up or down. The vestibular system, a network of chambers and canals deep inside the ear, helps us stay balanced. But that system needs time to to readjust in space. That process can take a few days. “In space, everything that gives you your position sense is radically altered,” said Dr. Michael Barratt, a physician turned astronaut. | 1,157 | 2,233 |
msmarco_v2.1_doc_01_1669267267#3_2448435351 | http://interactives.dallasnews.com/2015/spacebody/ | How space travel affects the human body | Preparing bodies for liftoff
Preparing bodies for liftoff
NASA doctors studying travel that can take toll on organs, skin, bones
FIVE THINGS TO KNOW ABOUT THE EFFECT OF SPACE TRAVEL ON THE BODY
1 There’s a thing called “space motion sickness.”
Vestibular system
2 Bones become thinner.
3 Organs move.
Advertisement
4 The heart weakens and becomes rounder.
5 Skin becomes thinner.
FIVE THINGS TO KNOW ABOUT THE TWINS STUDY
1 Will Scott Kelly’s genes change in space?
2 What will happen to the bugs in Scott’s gut?
3 Will spaceflight damage arteries?
4 Will Scott’s eyeballs change shape?
5 Does the brain work differently on a long space flight?
EXERCISING IN SPACE
| Nausea and vomiting are triggered by sudden entry into microgravity where there’s no sense of up or down. The vestibular system, a network of chambers and canals deep inside the ear, helps us stay balanced. But that system needs time to to readjust in space. That process can take a few days. “In space, everything that gives you your position sense is radically altered,” said Dr. Michael Barratt, a physician turned astronaut. Barratt said as many as 60 to 70 percent of astronauts suffer space motion sickness. “You can feel a very rapid fluid rush to your head which at first is not very pleasant. You feel like you’re suddenly hanging upside down,” he said. Barratt has never vomited on board the space station, but he has suffered queasiness that’s subsided over the course of a few days with the help of anti-nausea medication. “It feels good to be in zero gravity!” | 1,804 | 2,678 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.