active questions tagged lists - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T02:11:53Zhttp://stackoverflow.com/feeds/tag/listshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823016/haskell-list-comprehension0Haskell List ComprehensionMickel2009-11-30T22:59:55Z2009-11-30T23:05:23Z
<p>I get the error "Not in scope: x" when doing as follows...</p>
<pre><code>blanks :: Sudoku -> [Pos]
blanks (Sudoku su) = [ fst x | x <- posSud | isBlank (snd x) ]
where
isBlank Nothing = True
isBlank _ = False
posSud = zip ixPos (concat su)
ixPos = zip ixRows ixCols
ixCols = concat (replicate 9 [0..8])
ixRows = [floor (x / 9) | x <- [0..81]]
</code></pre>
<p>however, if I remove the guard of the 2:nd line GHCI compiles without giving me any errors.</p>
<p>Can you help me understand what I'm doing wrong?</p>
http://stackoverflow.com/questions/1820357/appending-lists-from-files-to-a-single-list-in-python0Appending lists from files to a single list in PythonFrancis2009-11-30T15:05:26Z2009-11-30T16:22:13Z
<p>I'm trying to write a function that reads files from a "deferred" directory which contains files that contain lists. Here's what the files in the deferred folder contain:</p>
<pre><code>'173378981', '45000', '343434', '3453453', '34534545', '3452342', '234234', '42063008', 'Exempted', '10000'
'1000014833', '0', '0', '0', '0', '0', '0', '0', 'Exempted', '0'
'1000009598', '0', '0', '0', '0', '0', '0', '0', 'Exempted', '0'
'279483421', '0', '0', '0', '0', '0', '0', '0', 'Exempted', '0'
'1000009600', '0', '0', '0', '0', '0', '0', '0', 'Exempted', '0'
'389453080', '0', '0', '0', '0', '0', '0', '0', 'Exempted', '0'
'1000009602', '0', '0', '0', '0', '0', '0', '0', 'Exempted', '0'
</code></pre>
<p>The function used to write the file(s):</p>
<pre><code>def storeDeferredRecords(records):
"""docstring for createFile"""
now = datetime.datetime.now()
filename = deferredDir + '/' + now.strftime("%Y%m%d-%H%M%S")
f = open(filename, 'w')
newlist = map(lambda(x): str(x)[1:-1], records)
for item in newlist:
f.write("%s\n" % item)
f.close
</code></pre>
<p>I need help with the function used to read the file. I was only able to write this:</p>
<pre><code>def getDeferredRecords():
"""docstring for getDeferredRecords"""
infiles = [infile for infile in glob.glob(deferredDir + '/*')]
<code to read the contents of each file here>
</code></pre>
<p>Can someone help me out? I need to read the lines and insert them into a list. This list will then be merged with records from separate CSV file.</p>
http://stackoverflow.com/questions/1818763/creating-new-list-with-values-from-two-prior-lists0Creating new list with values from two prior lists.Alex2009-11-30T09:30:40Z2009-11-30T11:09:48Z
<p>Given the lists list1 and list2 that are of the same length, create a new list consisting of the last element of list1 followed by the last element of list2 , followed by the second to last element of list1 , followed by the second to last element of list2 , and so on (in other words the new list should consist of alternating elements of the reverse of list1 and list2 ). For example, if list1 contained [1, 2, 3] and list2 contained [4, 5, 6] , then the new list should contain [3, 6, 2, 5, 1, 4] . Associate the new list with the variable list3 . </p>
<p>My code: </p>
<pre><code>def new(list1,list2):
i = 0
j = 0
new_list = []
for j in list1:
new_list[i-1] = list2[j-1]
i+= 1
j += 1
new_list[i-1] = list2 [j-1]
i+= 1
j += 1
return new_list
</code></pre>
<p>I know, it's messy =_=, help?</p>
http://stackoverflow.com/questions/1815258/how-do-i-check-the-index-of-a-an-element-in-a-list-python2How do I check the index of a an element in a list? (Python)alex2009-11-29T11:13:08Z2009-11-29T12:45:29Z
<pre><code>list = [('ba',4), ('hh',5), ('gg', 25)]
</code></pre>
<p>How do I do:</p>
<p>list.index('hh') ...and returns 1?</p>
<p>Then, how do I sort it by the 25, 5, 4?</p>
<p>What if I have 2 lists:</p>
<pre><code>list1 = [('ba',4), ('hh',5), ('gg', 25)]
list2 = [('ja',40), ('hgh',88), ('hh', 2)]
</code></pre>
<p>how do I do a for each?</p>
<pre><code>for item in l1:
if item[0] in l2[0 of the tuple]:
</code></pre>
http://stackoverflow.com/questions/1815148/need-an-advice-regarding-accessing-the-database1Need an advice regarding accessing the databaseSrinivas Reddy Thatiparthy2009-11-29T10:07:20Z2009-11-29T10:15:24Z
<p>Suppose I have a Comment class having properties and their methods
like</p>
<pre><code>public Comment GetComment(Guid id)
</code></pre>
<p>And</p>
<pre><code>public static List<Comment> GetComments()
public static List<Comment> GetCommentsByAuthor(Author id)
</code></pre>
<p>Now, What I usually do is write the database logic for each of the
above methods .
That said, Now I am seeing BlogEngine.NET code and He wrote in this
way;
He wrote the Database logic for GetComments() method and extracted
from it for all remaining methods, even for GetComment(Guid id) by
using something like</p>
<pre><code> //FindAll is a method in List<T> class
FindAll(delegate(Comment comment)
{
return comment.Author.Equals(author ,
StringComparison.OrdinalIgnoreCase);
}
);
</code></pre>
<p>My question is, is it a good idea to do it in this way rather than the
first approach?
Any pros and cons of this way and suggestions and pointers and
resources are most welcome.
TIA
Srinivas</p>
http://stackoverflow.com/questions/1798796/python-list-index-out-of-range-error0python : list index out of range error atv2009-11-25T17:57:54Z2009-11-26T21:05:34Z
<p>I have written a simple python program </p>
<pre><code>l=[1,2,3,0,0,1]
for i in range(0,len(l)):
if l[i]==0:
l.pop(i)
</code></pre>
<p>This gives me error 'list index out of range' on line <code>if l[i]==0:</code></p>
<p>After debugging I could figure out that <code>i</code> is getting incremented and list is getting reduced.<br>
However, I have loop termination condition <code>i < len(l)</code>. Then why I am getting such error? </p>
http://stackoverflow.com/questions/1690775/how-do-you-automap-listfloat-or-float-with-fluent-nhibernate0How do you automap List<float> or float[] with Fluent NHibernate?Tom Bushell2009-11-06T21:59:49Z2009-11-25T22:27:53Z
<p>Having successfully gotten a sample program working, I'm now starting
to do Real Work with Fluent NHibernate - trying to use Automapping on my project's class
heirarchy. </p>
<p>It's a scientific instrumentation application, and the classes I'm
mapping have several properties that are arrays of floats e.g. </p>
<pre><code> private float[] _rawY;
public virtual float[] RawY
{
get
{
return _rawY;
}
set
{
_rawY = value;
}
}
</code></pre>
<p>These arrays can contain a maximum of 500 values. </p>
<p>I didn't expect Automapping to work on arrays, but tried it anyway,
with some success at first. Each array was auto mapped to a BLOB
(using SQLite), which seemed like a viable solution. </p>
<p>The first problem came when I tried to call SaveOrUpdate on the
objects containing the arrays - I got "No persister for float[]"
exceptions. </p>
<p>So my next thought was to convert all my arrays into ILists e.g. </p>
<pre><code>public virtual IList<float> RawY { get; set; }
</code></pre>
<p>But now I get: </p>
<pre><code>NHibernate.MappingException: Association references unmapped class: System.Single
</code></pre>
<p>Since Automapping can deal with lists of complex objects, it never
occured to me it would not be able to map lists of basic types. But
after doing some Googling for a solution, this seems to be the case.
Some people seem to have solved the problem, but the sample code I
saw requires more knowledge of NHibernate than I have right now - I
didn't understand it. </p>
<p>Questions:</p>
<p><strong>1. How can I make this work with Automapping?</strong> </p>
<p><strong>2. Also, is it better to use arrays or lists for this application?</strong> </p>
<p>I can modify my app to use either if necessary (though I prefer
lists). </p>
<p><strong>Edit:</strong></p>
<p>I've studied the code in <a href="http://stackoverflow.com/questions/606607/mapping-collection-of-strings-with-nhibernate">Mapping Collection of Strings</a>, and I see there is test code in the source that sets up an IList of strings, e.g.</p>
<pre><code>public virtual IList<string> ListOfSimpleChildren { get; set; }
[Test]
public void CanSetAsElement()
{
new MappingTester<OneToManyTarget>()
.ForMapping(m => m.HasMany(x => x.ListOfSimpleChildren).Element("columnName"))
.Element("class/bag/element").Exists();
}
</code></pre>
<p>so this must be possible using pure Automapping, but I've had zero luck getting anything to work, probably because I don't have the requisite knowlege of manually mapping with NHibernate.</p>
<p>Starting to think I'm going to have to hack this (by encoding the array of floats as a single string, or creating a class that contains a single float which I then aggregate into my lists), unless someone can tell me how to do it properly.</p>
<p><strong>End Edit</strong></p>
<p>Here's my CreateSessionFactory method, if that helps formulate a
reply... </p>
<pre><code> private static ISessionFactory CreateSessionFactory()
{
ISessionFactory sessionFactory = null;
const string autoMapExportDir = "AutoMapExport";
if( !Directory.Exists(autoMapExportDir) )
Directory.CreateDirectory(autoMapExportDir);
try
{
var autoPersistenceModel =
AutoMap.AssemblyOf<DlsAppOverlordExportRunData>()
.Where(t => t.Namespace == "DlsAppAutomapped")
.Conventions.Add( DefaultCascade.All() )
;
sessionFactory = Fluently.Configure()
.Database(SQLiteConfiguration.Standard
.UsingFile(DbFile)
.ShowSql()
)
.Mappings(m => m.AutoMappings.Add(autoPersistenceModel)
.ExportTo(autoMapExportDir)
)
.ExposeConfiguration(BuildSchema)
.BuildSessionFactory()
;
}
catch (Exception e)
{
Debug.WriteLine(e);
}
return sessionFactory;
}
</code></pre>
http://stackoverflow.com/questions/364621/python-get-position-in-list3Python - get position in listSean2008-12-13T01:20:32Z2009-11-25T20:24:35Z
<p>I am iterating over a list and I want to print out the index of the item if it meets a certain condition. How would I do this?</p>
<p>Example: </p>
<pre><code>testlist = [1,2,3,5,3,1,2,1,6]
for item in testlist:
if item == 1:
print position
</code></pre>
http://stackoverflow.com/questions/1797584/how-to-add-an-item-to-a-list-of-generics-declared-as-a-list-of-an-abstract-object1How to add an item to a list of generics declared as a list of an abstract object in C#Edwin2009-11-25T15:13:06Z2009-11-25T15:25:06Z
<p>Hello everybody.</p>
<p>So I have an abstract class named "Account" :</p>
<pre><code>public abstract class Account
{
private string _FinancialInstitution;
public string FinancialInstitution
{
get { return _FinancialInstitution; }
...
}
}
</code></pre>
<p>And I have two other classes that extends from those two:</p>
<pre><code>public class CreditCard : Account
{
private DateTime _ExpirationDate;
...
}
</code></pre>
<p>and this one:</p>
<pre><code>public class CheckingSavingsAccount : Account
{
private string _PrimaryAccountHolder;
...
}
</code></pre>
<p>Now, The whole point was to be able to store either kind of account in a generics collection list, but if I try to do this:</p>
<pre><code>List<Account> lstTemp = new List<Account>();
CreditCard newCC1 = new CreditCard();
lstTemp.Add(new CreditCard());
</code></pre>
<p>I got an "Object reference not set to an instance of an object." error on the line that attemps to add the newly credit card object created (lstTemp.Add). What am I doing wrong?</p>
<p><hr></p>
<p>This is the exception detail:</p>
<pre><code>System.NullReferenceException was unhandled
Message="Object reference not set to an instance of an object."
Source="mscorlib"
StackTrace:
at System.Collections.Generic.List`1.Add(T item)
at RunAsConsole.Program.Main(String[] args) in C:\Users\ortegae\Documents\Visual Studio 2008\Projects\eStocks50600\RunAsConsole\Program.cs:line 52
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException:
</code></pre>
http://stackoverflow.com/questions/1788608/reference-to-part-of-list-python2Reference to Part of List - Pythonjoe2009-11-24T08:15:26Z2009-11-25T07:02:31Z
<p>If I have a list in python, how can I create a reference to part of the list? For example:</p>
<pre><code>myList = ["*", "*", "*", "*", "*", "*", "*", "*", "*"]
listPart = myList[0:7:3] #This makes a new list, which is not what I want
myList[0] = "1"
listPart[0]
"1"
</code></pre>
<p>Is this possible and if so how would I code it?</p>
<p>Cheers,
Joe</p>
http://stackoverflow.com/questions/1792517/how-to-add-the-values-stored-in-a-session-variable-in-php0how to add the values stored in a session variable in php?swathi 2009-11-24T19:53:49Z2009-11-24T19:56:58Z
<p>Okay </p>
<p>I have two pages-- page1.php and page2.php .Both of these pages have select lists.I have posted the values selected by the user to script.php which has them stored in session variables.</p>
<p>I need to add the values (which are the ones selected by the user from the select lists in both the pages) and display this total value in page3.php.now how do i add these values in the script?</p>
<p>any suggestions would be helpful.thanks in advance.</p>
http://stackoverflow.com/questions/1783974/python-most-useful-lists-comprehension-construction-1Python - Most useful lists-comprehension constructionpsihodelia2009-11-23T15:44:23Z2009-11-23T17:20:09Z
<p>What Python's user-made list-comprehension construction is the most useful? </p>
<p>I have created the following two quantifiers, which I use to do different verification operations:</p>
<pre><code>def every(f, L): return not (False in [f(x) for x in L])
def some(f, L): return True in [f(x) for x in L]
</code></pre>
<p>an optimized versions (requres Python 2.5+) was proposed below:</p>
<pre><code>def every(f, L): return all(f(x) for x in L)
def some(f, L): return any(f(x) for x in L)
</code></pre>
<p>So, how it works? </p>
<pre><code>"""For all x in [1,4,9] there exists such y from [1,2,3] that x = y**2"""
answer = every([1,4,9], lambda x: some([1,2,3], lambda y: y**2 == x))
</code></pre>
<p>Using such operations, you can easily do smart verifications, like:</p>
<pre><code>"""There exists at least one bot in a room which has a life below 30%"""
answer = some(bots_in_this_room, lambda x: x.life < 0.3)
</code></pre>
<p>and so on, you can answer even very complicated questions using such quantifiers. Of course, there is no infinite lists in Python (hey, it's not Haskell :) ), but Python's lists comprehensions are very practical. </p>
<p><strong>Do you have your own favourite lists-comprehension constructions?</strong></p>
<p>PS: I wonder, why most people tend not to <strong>answer questions</strong> but critisize presented examples? The question is about favourite lists-comprehension construction actually.</p>
http://stackoverflow.com/questions/493367/python-for-each-list-element-apply-a-function-across-the-list5Python: For each list element apply a function across the listjoe calimar2009-01-29T20:53:15Z2009-11-23T16:50:45Z
<p>Given [1,2,3,4,5], how can i do something like 1/1, 1/2, 1/3,1/4,1/5, ...., 3/1,3/2,3/3,3/4,3/5,.... 5/1,5/2,5/3,5/4,5/5</p>
<p>I would like to store all the results, find the minimum, and return the two numbers used to find the minimum. So in the case i've described above i would like to return (1,5).</p>
<p>So basically I would like to do something like</p>
<p>for each element i in the list
map some function across all elements in the list, taking i and j as parameters
store the result in a master list, find the minimum value in the master list, and return the arguments i, j used to calculate this minimum value.</p>
<p>In my real problem i have a list objects/coordinates, and the function I am using takes two coordinates and calculates the euclidean distance. I'm trying to find minimum euclidean distance between any two points but I don't need a fancy algorithm.</p>
http://stackoverflow.com/questions/1777310/good-way-to-combine-two-listts-in-net-2-03Good way to combine two List<T>s in .NET 2.0?larryq2009-11-22T00:32:05Z2009-11-23T13:13:32Z
<p>I have two lists I need to form the union of, but I'm in .NET 2.0 so the Union() method appears to be out. These are lists of integers, so no problem with the equality comparisons. What's a good way to go about this?</p>
http://stackoverflow.com/questions/1779045/prolog-list-question1Prolog list questionjen2009-11-22T15:31:34Z2009-11-22T17:23:02Z
<p>I have a database consisting of the following rules;</p>
<pre><code>speaks(fred [german, english, dutch]).
speaks(mary [spanish, arabic, dutch]).
speaks(jim [norwegian, italian, english]).
speaks(sam [polish, swedish, danish]).
</code></pre>
<p>etc</p>
<p>As part of a much larger program, how would I find out 3 people who speak the same language?</p>
<p>Jen</p>
http://stackoverflow.com/questions/1774256/java-code-review-merge-sorted-lists-into-a-single-sorted-list0Java Code Review: Merge sorted lists into a single sorted listRosarch2009-11-21T01:59:13Z2009-11-21T15:47:34Z
<p>I want to merge sorted lists into a single list. How is this solution? I believe it runs in O(n) time. Any glaring flaws, inefficiencies, or stylistic issues?</p>
<p>I don't really like the idiom of setting a flag for "this is the first iteration" and using it to make sure "lowest" has a default value. Is there a better way around that?</p>
<pre><code>public static <T extends Comparable<? super T>> List<T> merge(Set<List<T>> lists) {
List<T> result = new ArrayList<T>();
int totalSize = 0; // every element in the set
for (List<T> l : lists) {
totalSize += l.size();
}
boolean first; //awkward
List<T> lowest = lists.iterator().next(); // the list with the lowest item to add
while (result.size() < totalSize) { // while we still have something to add
first = true;
for (List<T> l : lists) {
if (! l.isEmpty()) {
if (first) {
lowest = l;
first = false;
}
else if (l.get(0).compareTo(lowest.get(0)) <= 0) {
lowest = l;
}
}
}
result.add(lowest.get(0));
lowest.remove(0);
}
return result;
}
</code></pre>
<p>Note: this isn't homework, but it isn't for production code, either.</p>
http://stackoverflow.com/questions/1772178/create-a-list-url-links-and-deploy-it-as-a-feature0Create a List (url links) and deploy it as a featureAsh2009-11-20T17:48:56Z2009-11-20T18:52:21Z
<p>Hi All,</p>
<p>I'm very new to SharePoint, so apologies if this sounds a little basic.</p>
<p>I want to create a List in SharePoint that is just purely URL links, but then make it available to every site collection that we will create. </p>
<p>Once this list is created, I need it to display in a webpart (like that standard 'links' webpart). I guess I will need to create a Feature, so that it can be activated at Site Collection level. </p>
<p>Any ideas how this can be achieved please?</p>
<p>Thank you all kindly in advance, Ash ;-)</p>
http://stackoverflow.com/questions/1768416/ok-this-worked-what-is-it-exactly6ok, this worked. what is it exactly? fieldingmellish2009-11-20T04:54:12Z2009-11-20T06:07:19Z
<p>I just lifted this snippet from a website and it proved to be exactly the solution I needed for my particular problem. </p>
<p>But I have no idea what it is (particularly the delegate and return parts) and the source doesn't explain it. </p>
<p>Hoping SO can enlighten me.</p>
<pre><code>myList.Sort(delegate(KeyValuePair<String, Int32> x, KeyValuePair<String, Int32> y) { return x.Value.CompareTo(y.Value); });
</code></pre>
http://stackoverflow.com/questions/1764309/conditional-counting-in-python2Conditional counting in Pythonnicolaum2009-11-19T15:54:25Z2009-11-19T19:14:14Z
<p>Hello there,</p>
<p>not sure this was asked before, but I couldn't find an obvious answer. I'm trying to count the number of elements in a list that are equal to a certain value. The problem is that these elements are not of a built-in type. So if I have</p>
<pre><code>class A:
def __init__(self, a, b):
self.a = a
self.b = b
stuff = []
for i in range(1,10):
stuff.append(A(i/2, i%2))
</code></pre>
<p>Now I would like a count of the list elements whose field b = 1. I came up with two solutions:</p>
<pre><code>print [e.b for e in stuff].count(1)
</code></pre>
<p>and</p>
<pre><code>print len([e for e in stuff if e.b == 1])
</code></pre>
<p>Which is the best method? Is there a better alternative? It seems that the count() method does not accept keys (at least in Python version 2.5.1.</p>
<p>Many thanks!</p>
http://stackoverflow.com/questions/1757698/python-fast-extraction-of-intersections-among-all-possible-2-combinations-in-a-l1Python: Fast extraction of intersections among all possible 2-combinations in a large number of listsradrat2009-11-18T17:27:54Z2009-11-19T09:05:48Z
<p>I have a dataset of ca. 9K lists of variable length (1 to 100K elements). I need to calculate the length of the intersection of <strong>all possible 2-list combinations</strong> in this dataset. Note that elements in each list are unique so they can be stored as sets in python.</p>
<p>What is the most efficient way to perform this in python?</p>
<p><strong>Edit</strong> I forgot to specify that I need to have the ability to match the intersection values to the corresponding pair of lists. Thanks everybody for the prompt response and apologies for the confusion!</p>
http://stackoverflow.com/questions/1760406/scheme-how-do-i-modify-an-individual-element-in-a-list0Scheme - how do I modify an individual element in a list?Jonno_FTW2009-11-19T01:48:01Z2009-11-19T03:03:34Z
<p>If I have a list of 0's, how would I modify, for example, the 16th 0 in the list?</p>
http://stackoverflow.com/questions/1739675/efficient-queue-in-haskell2Efficient queue in Haskell.Absolute02009-11-16T02:04:59Z2009-11-19T01:08:42Z
<p>How can I efficiently implement a list data structure where I can have 2 views to the head and end of the list, that always point to a head a tail of a list without expensive calls to reverse.
i.e:</p>
<pre><code>start x = []
end x = reverse start -- []
start1 = [1,2,3] ++ start
end start1 -- [3,2,1]
</code></pre>
<p>end should be able to do this without invoking 'reverse' but simply looking at the given list from the perspective of the list being in reverse automatically. The same should hold if I create new lists from concatenations to start.</p>
http://stackoverflow.com/questions/312443/how-do-you-split-a-list-into-evenly-sized-chunks-in-python12How do you split a list into evenly sized chunks in Python?jespern2008-11-23T12:15:52Z2009-11-17T20:17:16Z
<p>I have a list of arbitrary length, and I need to split it up into equal size chunks and operate on it. There are some obvious ways to do this, like keeping a counter and two lists, and when the second list fills up, add it to the first list and empty the second list for the next round of data, but this is potentially extremely expensive.</p>
<p>I was wondering if anyone had a good solution to this for lists of any length, e.g. using generators.</p>
<p>This should work:</p>
<pre><code>l = range(1, 1000)
print chunks(l, 10) -> [ [ 1..10 ], [ 11..20 ], .., [ 991..999 ] ]
</code></pre>
<p>I was looking for something useful in <code>itertools</code> but I couldn't find anything obviously useful. Might've missed it, though.</p>
<p>Related question: <a href="http://stackoverflow.com/questions/434287/what-is-the-most-pythonic-way-to-iterate-over-a-list-in-chunks">What is the most “pythonic” way to iterate over a list in chunks?</a></p>
http://stackoverflow.com/questions/1747215/need-help-in-list-destroy-function0Need Help in List Destroy function Noob2009-11-17T07:42:04Z2009-11-17T07:42:04Z
<p>Hi all, </p>
<p>I am writing a storage allocator using the First Fit Algorithm and would like to free up memory I have obtained from the system before quitting. So I have this list of 'free' memory which is obtained from the system and remains unused with me. At the end of the program when I try to free the list using the code , my program is crashing, I'm probably doing something silly but just can't figure it out!</p>
<p>Note : I tag every allocation by my allocator in a "tag table" and delete the tag when I free the allocated memory. So If I don't end up with any tags in the table , I must have freed all allocated blocks and hence I don't have memory leaks.<br>
(I have not included the tag table routine nor the main file. )</p>
<p>Any Help is appreciated, Thanks</p>
<pre><code>#include <string.h>
#include "MemRoutines.h"
#include "TagTable.h"
/*
* Alignment is chosen that will be forced on all blocks allocated.
* All allocated blocks will be rounded up to a multiple of this
* size.
*/
#define ALIGNMENT sizeof(double)
/*
* LARGEMEMORY is the minimum chunk of memory block obtained from
* the OS at once.This size is a multiple of ALIGNMENT.my_malloc()
* called with requested byte size greater than LARGEMEMORY will
* fail by design.
*/
#define LARGEMEMORY 4*1024*1024 /*4MB memory obtained from system at once */
/*
* BYTEn is the nth sentinal byte on either side of the space
* allocated to the user.They can be used later on to verify if the
* user has written beyond the allocated space. 0x00000000 should
* stop string operations.
*/
/*
* ------------------------------------------------------
* |Next Free |Size of | User is concerned only about |
* | Memory |Allocated| this portion of memory |
* |Address |Block | and has no knowledge of rest |
* ------------------------------------------------------
* |<------Header------>|^Address Returned to user
* ^-----User Requested Size------^
* ^-------Memory Needed for the Allocation-------------^
*
* " FRAMEWORK OF THE MEMORY MANAGEMENT SCHEME "
*/
/*
* Header is defined assuming double has the strictest memory
* alignment requirement
*/
union header {
struct {
union {
int sign; /*Used when the block is returned by malloc( ) */
union header* next; /*Used when the block is in free list */
}u;
size_t size;/*Size of block including this header*/
}s;
double dummy_align_var;
};
#define SIGN 0xD7E529A2 /* Our magical signature */
/*
* Global Pointer within File scope which points to the start
* of 'free' list
*/
static union header* freelist = NULL;
/*
* The function below will round off the size to a multiple
* of ALIGNMENT Works by setting the last few bits to zero.
* Exploits the fact that ALIGNMENT is a power of 2
*/
static size_t align(size_t size){
return ((size + ALIGNMENT - 1) & ~(ALIGNMENT - 1));
}
/*
* The following macros generate the rounded off size for the
* header and the footer.The overhead size is the extra memory
* that needs to be allocated in addition to user's request.
*/
#define HEADER_SIZE align(sizeof(union header))
/*
* Gets at least INITALLOC memory block from the OS.malloc() is
* used instead of actual system calls.
*/
union header* getmemory(size_t n){
union header* BigMem = NULL;
if(( BigMem = malloc( n * sizeof(union header))) == NULL )
return NULL;
BigMem->s.size = n;
BigMem->s.u.next = NULL;
return BigMem;
}
void* my_malloc(char* filename,
unsigned int lineno,
size_t request){
union header* prev = NULL;
union header* p = NULL;
union header* memblock = NULL;
size_t space_required = align( request + HEADER_SIZE );
size_t space_left = 0;
if((signed)request <= 0){
/*add_tag(filename,lineno,NULL,NULL,0);*/
return NULL; /*Bad Request*/
}
/*
* Traverse freelist sequentially until appropriate memory block
* is found is found in the freelist.
*/
p = freelist;
while( p != NULL && p->s.size < space_required ){
prev = p;
p = p->s.u.next;
}
/*
* No appropriate block present to fulfill request - Either this
* is the first call to memory or memory block already in the
* freelist is insuffient to fulfill request.
*/
if ( p == NULL ){
if(( memblock = getmemory(LARGEMEMORY)) == NULL ){
/*add_tag(filename,lineno,NULL,NULL,0);*/
return NULL;
}
/*
* Search the free list to insert this block at appropriate loc
* The list is kept sorted on addresses
*/
prev = NULL;
p = freelist;
while ( p != NULL && p < memblock ){
prev = p;
p = p->s.u.next;
}
memblock->s.u.next = p;/*Connect the block to list*/
/*
* The freelist is empty and the memory block is added as the
* first node in the list.
*/
if( prev == NULL )
freelist = memblock;
/*
* The memory block is added as the last node in the free list
*/
else if ( p == NULL ){
memblock->s.u.next = NULL;
prev->s.u.next = memblock;
}
/*
* The memory block is added somewhere in the middle of the
* free list
*/
else
prev->s.u.next = memblock;
/*
* Now p points to a memory block which is of appropriat size
* This block is then either chopped or passed as it is to the
* user
*/
p = memblock;
}
/*
* Calculate size requirements now
*/
if ( space_required > p->s.size ){
/*add_tag(filename,lineno,NULL,NULL,0);*/
return NULL;
}
space_left = p->s.size - space_required;
if ( space_left >= sizeof(union header) + sizeof(int) ){
/*
* Split the block, keep p in free list and return upper end
* of block.This way the pointers dont need to be saved again.
* Simpler
*/
memblock = (union header *)( (char*)p + space_left );
memblock->s.size = space_required;
memblock->s.u.sign = SIGN;/*Unlink Block*/
p->s.size = space_left;
add_tag(filename, lineno, memblock, memblock + 1, request );
return (void*)( memblock + 1 );
}
/*
* No split, unlink the block and return it to user for use
*/
if ( prev == NULL )
freelist = p->s.u.next;
else
prev->s.u.next = p->s.u.next;
p->s.u.sign = SIGN;
add_tag(filename, lineno, p, p + 1, request );
return (void*)( p + 1 );
}
/*
* Custom calloc , works by simply calling malloc and then sets
* all bytes to zero using memset()
*/
void* my_calloc( char* filename_c,
unsigned int lineno_c,
size_t nobj,
size_t size ){
void* callocp ;
/*
* Each successful allocation will be automatically tagged
*/
if( (callocp = my_malloc(filename_c,lineno_c,nobj * size )) == NULL )
return NULL;
/*Set all bytes to zero*/
memset( callocp, 0, nobj * size );
return callocp;
}
void my_free(char* filename_f,
unsigned int lineno_f,
void* ptr2free){
union header* memblock = NULL;
union header* prev = NULL;
union header* p = NULL;
unsigned int tag_no = 0;
/*
* Freeing a NULL pointer is legal , free() should not do
* anything. Simply return
*/
if( ptr2free == NULL ){
/*fprintf(stderr,"Line %u in %s is trying to free a NULL pointer\n\n",\
lineno_f,filename_f);*/
return ;
}
memblock = (union header*)ptr2free - 1 ;
/*
* My Signature not present and hence the pointer was not
* produced by my_malloc()
*/
if ( memblock->s.u.sign != SIGN ){
/*fprintf(stderr,"Line %u in %s is trying to free a wild pointer\n\n",\
lineno_f,filename_f);*/
return ;
}
/* Find the tag number in the tag table*/
for( tag_no = 0 ; tag_no < TAG_MAX; tag_no++ ){
if( tag_table[tag_no].returned_address == ptr2free )
break;
}
/*
* Search the free list to find an appropriate location to
* insert the memory block
*/
prev = NULL ;
p = freelist;
while( p != NULL && p < (union header*)ptr2free ){
prev = p ;
p = p->s.u.next;
} /*At this point of time , prev < memblock < p */
/*
* If prev == NULL , we must have either of the following two
* cases:
* 1. The Freelist is empty and the node has to be inserted as
* the first node in the free list.
* 2.There is a single node in freelist and the address of the
* memblock is less than the address of the first node , hence
* again this block is inserted as the first node in the list
*/
if( prev == NULL ){
memblock->s.u.next = p;
freelist = prev = memblock;
delete_tag(tag_no);
}
/*
* The memory block starts exactly where the previous block
* ends hence the two blocks are "combined". The size of the
* previous block is simply allowed to grow. There is nothing
* to link here
*/
if( (union header*)(prev + prev->s.size) == memblock ){
prev->s.size += memblock->s.size;
delete_tag(tag_no);
}
/*
* The memory block has to be inserted between the two adjacent
* blocks. Keep track of the 'new prev' as well.
*/
else {
memblock->s.u.next = p;
prev->s.u.next = memblock;
prev = memblock;
delete_tag(tag_no);
}
/*
* Check if the next block is adjacent to the newly added block
*/
if ( p != NULL && ((union header*)(memblock + memblock->s.size) == p) ){
memblock->s.size += p->s.size ;
memblock->s.u.next = p->s.u.next ;
delete_tag(tag_no);
}
/*
* All the my_malloc() calls have been successfully freed,now
* release all memory to the OS before quitting
*/
if( !is_table_initialised() )
freelist_destroy();
return;
}
void freelist_destroy(void)
{
union header* p = freelist;
union header* q = NULL;
if( p == NULL )
return ;
while ( p != NULL ){
q = p->s.u.next ;
free(p);
p = q;
}
return;
}
</code></pre>
http://stackoverflow.com/questions/1742188/java-dropdown-checklist0Java Dropdown Checklisttwodayslate2009-11-16T13:26:34Z2009-11-16T14:05:52Z
<p>I understand how to make a multiple-select list box using <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/list.html" rel="nofollow"><code>JLists</code></a> but I want to add <a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JCheckBox.html" rel="nofollow"><code>JCheckBox</code></a>es to the list and make it dropdown like. The best visual representation I have found online is <a href="http://code.google.com/p/dropdown-check-list/" rel="nofollow">dropdown-check-list</a>. </p>
<p>What would be the best way to accomplish the above?
I was thinking of a <a href="http://java.sun.com/docs/books/tutorialJWS/uiswing/events/ex6/TableListSelectionDemo.jnlp" rel="nofollow">TableList</a>. Any suggestions?</p>
http://stackoverflow.com/questions/1668428/prolog-problem-with-combinding-predicates-that-work-on-their-own1Prolog Problem with combinding predicates that work on their own misterfixit2009-11-03T16:22:49Z2009-11-14T04:19:46Z
<p>Here we go, bear with me. The over-all goal is to return the max alignment between two lists. If there are more than one alignment with the same length it can just return the first.</p>
<p>With alignment I mean the elements two lists share, in correct order but not necessarily in order. 1,2,3 and 1,2,9,3; here 1,2,3 would be the longest alignment. Any who, know for the predicates that I already have defined. </p>
<pre><code>align(Xs, Ys, [El | T]) :-append(_, [El | T1], Xs),append(_, [El | T2], Ys),align(T1, T2, T).
align(_Xs, _Ys, []).
</code></pre>
<p>Then I use the built-in predicate findall to get a a list of all the alignments between these lists? In this case it puts the biggest alignment first, but I'm not sure why. </p>
<pre><code>findall(X,align([1,2,3],[1,2,9,3],X),L).
</code></pre>
<p>That would return the following; </p>
<pre><code>L = [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []].
</code></pre>
<p>That is correct, but now I need a predicate that combines these two and returns the biggest list in the list of lists. </p>
http://stackoverflow.com/questions/1698308/finding-the-maximum-length-of-lists-in-c1finding the maximum length of lists in c#anildevkj2009-11-08T23:26:36Z2009-11-08T23:29:54Z
<p>After I have created a list and added the contents to it, how can I find the length of the list?</p>
http://stackoverflow.com/questions/1688863/deleting-from-dict-if-found-in-new-list-in-python0Deleting from dict if found in new list in PythonKP2009-11-06T16:49:34Z2009-11-08T20:27:37Z
<p>Say I have a dictionary with whatever number of values.
And then I create a list.
If any of the values of the list are found in the dictionary, regardless of whether or not it is a key or an index how do I delete the full value?</p>
<p>E.g:</p>
<pre><code>dictionary = {1:3,4:5}
list = [1]
...
dictionary = {4:5}
</code></pre>
<p>How do I do this without creating a new dictionary?</p>
http://stackoverflow.com/questions/742371/python-strange-behavior-in-for-loop-or-lists1Python strange behavior in for loop or listsrogeriopvl2009-04-12T20:30:22Z2009-11-07T17:12:18Z
<p>Hi, I'm currently developing a program in python and I just noticed that something was wrong with the foreach loop in the language, or maybe the list structure. I'll just give a generic example of my problem to simplify, since I get the same erroneous behavior on both my program and my generic example:</p>
<pre><code>x = [1,2,2,2,2]
for i in x:
x.remove(i)
print x
</code></pre>
<p>Well, the problem here is simple, I though that this code was supposed to remove all elements from a list. Well, the problem is that after it's execution, I always get 2 remaining elements in the list.</p>
<p>What am I doing wrong? Thanks for all the help in advance.</p>
<p>Edit: I don't want to empty a list, this is just an example...</p>
http://stackoverflow.com/questions/1692388/python-list-of-dict-if-exists-increment-a-dict-value-if-not-append-a-new-dict2Python : List of dict, if exists increment a dict value, if not append a new dictNatim2009-11-07T08:07:05Z2009-11-07T08:38:29Z
<p>I would like do something like that.</p>
<pre><code>list_of_urls = ['http://www.google.fr/', 'http://www.google.fr/',
'http://www.google.cn/', 'http://www.google.com/',
'http://www.google.fr/', 'http://www.google.fr/',
'http://www.google.fr/', 'http://www.google.com/',
'http://www.google.fr/', 'http://www.google.com/',
'http://www.google.cn/']
urls = [{'url': 'http://www.google.fr/', 'nbr': 1}]
for url in list_of_urls:
if url in [f['url'] for f in urls]:
urls[??]['nbr'] += 1
else:
urls.append({'url': url, 'nbr': 1})
</code></pre>
<p>How can I do ? I don know if I should take the tuple to edit it or figure out the tuple indice?</p>
<p>Any help ?</p>