List mutation and shared structure, Python Programming

Assignment Help:

List mutation and shared structure

Lists are mutable data  structures, which defines  that  we can actually modifies  the values  stored in their components. We do this by using element-selection statement, like a[1] on the left-hand side of an assignment expression. So, the assignment

a[1] = -3

assigns  the  second  element of a to be -3.  In more  detail,  the  left-hand side  of this  expression

1630_List mutation and shared structure.png

We have permanently modified the list named a.

We will defines the consequences of the mutability of lists; programs that change list structure can become  very  confusing, but  you  can always work  your  way  through what  is happening by drawing out the memory diagrams.Continuing the previous samples, let us remind that  a is bound directly to a pointer to a list (or a sequence of memory cells), and think  about  what  occurs if we do:

886_List mutation and shared structure 2.png

Now,  we can reference parts  of the list through b, and even modifies  the list structure that way:

 

>>> b[0]

2

>>> b[2] = 1

Notice that, because  a and b point  to the similar list, modifying b changes a!

989_List mutation and shared structure 3.png

This situation is called  aliasing : the name  b has become  an alias  for a.  Aliasing may be useful, but  it may also cause  problems, because  you  can  inadvertently modify  b (by passing it into a procedure that changes one of its structured statement, for example) when  it is very important to you to keep a unmodi?ed.

 

Another important way to change  a list is to add  or change  components. We will show adding elements to the end of a data structure, but look the Python documentation for more functions on lists. This statement

836_List mutation and shared structure 4.png

 

memory sequence), b is modified too. This is a side effect of the aliasing between a and b:

>>> b

[2, -3, 1, 9]

Often, it will be important to make a fresh copy of a list so that you can change it without affecting the  original one.   Here  are  two  similar types  to make  a copy  (use  whichever one  you  can remember):

>>> c = list(a)

>>> c = a[:]

Here is a sample of the memory at this position:

997_List mutation and shared structure 5.png

 

Now,  if we change  a component of c, it does not affect a (or b!):

 

>>> c[0] = 100

>>> c

[100, -3, 1, 9]

>>> a

[2, -3, 1, 9]

We can create crazy lists that share file within a single list:

>>> f = [1, 2, 3]

>>> g = [1, f, [f]]

472_List mutation and shared structure 6.png

 

If you want  to add  an element to a list and get a new copy at the similar time, you may do

>>> a + [1]

The + operator makes  a new list that contains the elements of both of its arguments, but does not give  any  top-level files.  All of our  functions of copying only work  reliably  if your  lists do not have other lists, because  it only copies single level of list. So example, if we did:

331_List mutation and shared structure 7.png

It is clear that if we were to modify  f, it would alter  h, so this is not a completely fresh copy.  If you have  to copy deep  structures, that  is, to create  a copy not only of the top level list structure, but  of the lists of any structures that  list has, and  the lists those  lists has,  etc., you  will have to use the Python copy.deepcopy method.

 


Related Discussions:- List mutation and shared structure

Variables, Variables We cannot  go very far without variables. A variabl...

Variables We cannot  go very far without variables. A variable is a value related to a name that we can bind  to have a particular value  and  then  later use in an expression.

Otway rees protocol implementation, I need server, client and trusted side ...

I need server, client and trusted side communicating and charging a service with that protocol (or needham shroeder)

Iteration over lists, What if you had a list of integer values, and you nee...

What if you had a list of integer values, and you need to add  them  up and give the sum?  Here are a number of different types of doing  it. First,  here  is a type in a style

Algorithm, given number isprime number or not

given number isprime number or not

Turtle graphics module in python programming language, Your assignment for ...

Your assignment for the semester will involve the development of a system for drawing trees using the Python programming language and the turtle graphics module (turtle.py). Comple

Simple expressions, Simple expressions A cornerstone of a programming ...

Simple expressions A cornerstone of a programming language is the  ability  to compute expressions.  We will start here  with  arithmetic expressions, just to take the  concep

Euler method, python program of motion of a particle in viscus medium

python program of motion of a particle in viscus medium

#cmdprobs, #Why can''t I cd my Desktop? A minute ago I would open up cmd an...

#Why can''t I cd my Desktop? A minute ago I would open up cmd and it starts in C:\Users\myname but now it''s starting in C:\WINDOWS\system> and I don''t where I am or how to get ou

Structured data, Structured data We will often  want  to work  with  l...

Structured data We will often  want  to work  with  large  groups of data.   Rather  than  providing  each  number its own  value,  we need  to manage the data  into natural s

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd