Factbites
 Where results make sense
About us   |   Why use us?   |   Reviews   |   PR   |   Contact us  

Topic: Library sort


  
  Library Dust: Library Issues   (Site not responding. Last check: 2007-10-18)
In your own library, right at this minute, there lie waiting on the shelves dozens of books whose entire purpose is to convince the reader that he or she can do everything from plumbing to roof work with a short course of instruction.
Literature is what the library has always been about: literature made the library before the book, when writing was a scroll or a clay tablet; when the librarian was an illiterate slave or mere copyist; when the library was open to nobody but its owner or a small, select few, and it is true today.
When library initiatives fail in such places it is because their proponents have not communicated well, not heard and understood the desires of the public—the voting public, not merely the portion of the community whose principal interest is the public library.
librarydust.typepad.com /library_dust/library_issues/index.html   (11101 words)

  
 Chambers Library - UCO
Library materials are loaned to courtesy card holders for a period of two weeks with one renewal allowed.
Deselection is the withdrawal of materials from the library collection with the goal of maintaining a collection which satisfies the mission of the University of Central Oklahoma and serves the research and current informational needs of the UCO community.
Gifts of library materials, either monographs or serials, or funds with which to effect their purchase will be accepted, provided they are consistent with the goals of the library and that any restrictions are acceptable to the library.
library.ucok.edu /faculty/index.cfm?sortBy=review   (1687 words)

  
 Sortable Table (WebFX)
The old script wasn't were modular and the only way to sort the table was to actually click on the header cell.
Sorts the text of the cells using a case sensitive string comparison.
Sorts the text of the cells using a case insensitive string comparison.
webfx.eae.net /dhtml/sortabletable/sortabletable.html   (492 words)

  
 Library assistants, clerical
When an item is borrowed, assistants scan the patron’s library card and the material to record the transaction in the library database; they then print a receipt with the due date or stamp the due date on the item.
Library assistants who prepare library materials may sit at desks or computer terminals for long periods and can develop headaches or eyestrain from working with the terminals.
Employment of library assistants is expected to grow as fast as the average for all occupations through 2014.
www.bls.gov /oco/ocos147.htm   (991 words)

  
 Library sort - Wikipedia, the free encyclopedia
Library sort, or gapped insertion sort is a sorting algorithm that uses an insertion sort, but with gaps in the array to accelerate subsequent insertions.
Like the insertion sort it is based on, library sort is a stable comparison sort and can be run as an online algorithm; however, it was shown to have a high probability of running in O(n log n) time (comparable to quicksort), rather than an insertion sort's O(n
The drawback to using the library sort is that it requires extra space for its gaps (the extra space is traded off against speed).
en.wikipedia.org /wiki/Library_sort   (312 words)

  
 C++ Notes: Algorithms: Sorts   (Site not responding. Last check: 2007-10-18)
Sorting provides a lot of programming practice, and is considered a good introduction to Big-Oh issues.
But take a look at STL sort for arrays for an introduction to using the library sort function.
While the performance on the average may be no better than bubble sort, it does allow for a significant reduction in the number of swaps, which can have a good performance effect on cache memory usage.
www.fredosaurus.com /notes-cpp/algorithms/sorting/sorting.html   (348 words)

  
 Java Components
The classes in the library extend classes, or implement interfaces in the javax.swing, javax.swing.table and javax.swing.event packages and therefore integrate seamlessly with your Java applications or applets.
As the library is being used by our software development team, it is constantly being improved and enhanced with new features.
Our library can be employed so as to show data in a traditional, yet enhanced, JTable, or in a so-called TreeTable, which is used in order to group several rows together in a table.
www.scientific.gr /html/components.html   (515 words)

  
 Atari Program Library
The sort program is executed by a RUN statement, allowing the DIMensioning of the rather large string necessary to sort the file in.
Before this is done, the sort key is selected and its offset (beginning and ending positions) is POKEd into locations 207 and 208 (decimal) for use by the machine language program.
The library record is READ and moved into its elements in line 7000-7060.
www.atarimagazines.com /compute/issue17/183_1_ATARI_PROGRAM_LIBRARY.php   (2872 words)

  
 VRD- A Report of Library-Related AskA Services   (Site not responding. Last check: 2007-10-18)
Libraries are becoming an increasingly visible presence on the Internet, with many launching Web sites and offering digital pathfinders to other online resources and collections.
As with many organizations that have established an Internet presence, libraries are currently exploring ways in which to expand their services by interacting with users and responding to inquiries via the Internet.
Some libraries such as the Seattle Public Library (SPL) restrict their services to valid SPL cardholders only, while others do not publicize their services in order to limit the number of questions received.
www.vrd.org /AskA/library.shtml   (829 words)

  
 Sorting algorithm - Wikipedia, the free encyclopedia
Efficient sorting is important to optimizing the use of other algorithms (such as search and merge algorithms) that require sorted lists to work correctly; it is also often useful for canonicalizing data and for producing human-readable output.
Sorting algorithms are prevalent in introductory computer science classes, where the abundance of algorithms for the problem provides a gentle introduction to a variety of core algorithm concepts, such as big O notation, divide-and-conquer algorithms, data structures, randomized algorithms, best, worst and average case analysis, time-space tradeoffs, and lower bounds.
For sorting very large sets of data that vastly exceed system memory, even the index may need to be sorted using an algorithm or combination of algorithms designed to perform reasonably with virtual memory, i.e.
en.wikipedia.org /wiki/Sort_algorithm   (2712 words)

  
 sort man document
sort sorts lines of all the files together and writes the result on the standard output.
Check that the single input file is sorted according to the ordering rules; give no output unless the file is out of sort.
Libraries are loaded, in left to right order, after the sort method has been initialized.
www.research.att.com /~gsf/man/man1/sort.html   (1008 words)

  
 librarian.net : my dream library
Libraries exist in communities, they're not started or maintained by egomaniacal librarians who need a new project.
I honor and respect the traditions that libraries are steeped in, I'm just curious about what elements of our new technological reality could be useful to the sorts of institutions libraries are.
Obviously changes in the economic reality of libraries or shifts in the work/home paradigm would need to occur before we could really do some of these things, but others just require a change in mindset, or a shift in priorities.
www.librarian.net /stacks/000989.html   (404 words)

  
 Java vs. C++
Of course, bubble sort is quadratic and not the most efficient sort algorithm, but this does not make the results less meaningful.
The Java library version using ArrayList instead of Vector was suggested by Josh Bloch, and is the version that should be compared to the C++ library version.
When sorting a vector of objects (Ranges of two int values in this example), the library sort algorithm in Java is roughly a factor of eight to ten slower than the one in C++.
verify.stanford.edu /uli/java_cpp.html   (1357 words)

  
 A library of internal sorting routines
This is a collection of sorting algorithms, in C. All the examples are thoroughly tested using random input generation and assertions, there are no known bugs.
All the sorting routines are internal sorts, they assume your data is in memory.
On the positive side this is an O(n·log(n)) algorithm in which the 'n' is proportional to the largest number in the sorted array so it scales well to the cases where the array is very big but the numbers in it are relatively small like a million element array containing unsigned bytes.
www.yendor.com /programming/sort   (845 words)

  
 City of Salem - Public Library   (Site not responding. Last check: 2007-10-18)
More formally, Friends of the Salem library is charted as a non-stock corporation under Virginia law and holds tax exempt status for Federal taxation purposes under section 501(c)(3) of the Internal Revenue Code.
Our goal is to intensify public attention on the library, it's resources and services; to become personally involved in rallying citizens, support to assure adequate library funding at the municipal and state levels; and to encourage gifts and bequests to the library.
Volunteers sort through the labels and symbols and assemble the correct quantity and type for redemption.
www.ci.salem.va.us /depts/library/friends.html   (789 words)

  
 GPUSort
One such problem is sorting, which has been a major computational bottleneck in applications spanning the breadth of computer science, most importantly in databases and data mining.
We have designed algorithms to perform sorting on the GPU and extract the maximum computational throughoutput of the GPU.
It is capable of sorting floating point values in both 16 and 32-bit precision, and can also quickly sort records based on a floating point key.
gamma.cs.unc.edu /GPUSORT/index.html   (551 words)

  
 Using EndNote at Harvard - Harvard College Library   (Site not responding. Last check: 2007-10-18)
To instantly locate a reference in your open library, simply type the first letters of the author’s last name and the matching citation will be highlighted.
Sort all of the references in your open library by "Author," "Year," or "Title" by clicking on the appropriate column headings.
For more advanced sorting, open the "References" menu and choose "Sort Library…" or simply click on the icon in the main toolbar with the three horizontal blue bars.
hcl.harvard.edu /research/guides/endnote/part3.html   (954 words)

  
 Brighton District Library - Gifts and Donations
The Library Enhancement Fund was established by the Board of Trustees for contributions to special art and cultural projects and purchases.
The Library will sort through these books, some are added to our collection, some are sold at the Friends of the Library book sales.
You may also volunteer your time to the library or to the Friends of the Brighton District Library.
brightonlibrary.info /about/gift.html   (703 words)

  
 Tip: Overcoming the default alphabetical column sort when sorting by rank
A common solution to the sorting issue is to create a table in Microsoft Word and to add sorting numbers in front of the items or names.
Each sort is a different view that can be seen in the navigator pane and accessed when needed.
Because the sort order is alphabetical, one way to deviate from this is to add a hidden, first column with ranking numbers.
www-106.ibm.com /developerworks/lotus/library/sort-rank   (1110 words)

  
 Library Assistants and Bookmobile Drivers
Library assistants—sometimes referred to as library media assistants, library aides, or circulation assistants—register patrons so they can borrow materials from the library.
Throughout the library, assistants sort returned books, periodicals, and other items and return them to their designated shelves, files, or storage areas.
Drivers may also record requests for special items from the main library and arrange for the materials to be mailed or delivered to a patron during the next scheduled visit.
www.umsl.edu /services/govdocs/ooh20002001/134.htm   (1039 words)

  
 PhotoshopNews: Photoshop News and Information » Archive » Lightroom Beta 4: The Library module
In this second part review we are going to concentrate on what’s new in the Library module, such as the new interface changes to the grid layout, the ability to batch rename images, and convert to DNG and CD/DVD archiving.
This is because Lightroom will only process library images to build the thumbnails and previews when you explicitly tell it to do so, or when you import new images.
If you have a large library of images to process, it is obviously going to take a while to rebuild all of the previews, so in these instances be prepared for a long wait.
photoshopnews.com /2006/10/02/lightroom-beta-4-the-library-module   (1967 words)

  
 Princeton University Library | Using EndNote
You can copy all references to your EndNote library by clicking on the Copy All References To pulldown menu and then selecting a library to which the references will be copied.
Sorting -- To sort by the fields that are showing, click on the Field name (Author, Title, etc.).
Use the pulldown menus to select how you want to sort your library, and use the icons on the right side of the window to indicate ascending or descending order.
libweb.princeton.edu /help/en8basic.php   (1071 words)

  
 Classroom Library
Library Book Sales- At my local library there is always several rolling carts of used books people have donated for the library to sell.
Another way to sort the library is to have kids involved in decided categories.
Serafini suggests boxing up the entire library and then sorting a box or two at a time over several days so it is less overwhelming and time consuming.
www.mandygregory.com /classroom_library1.htm   (1856 words)

  
 New central library is not by the book
It is an education for anyone who thinks of libraries as cozy, softly lit structures with oak bookshelves, a few desks and a card catalog in the center of it all.
The Seattle Public Library and Hoffman Construction are still hashing out who must pay $8.4 million in extra costs connected to construction delays.
The library, now eight months behind schedule and being built at a cost of $165 million, is a honeycomb of windows and high-ceilinged rooms.
seattlepi.nwsource.com /local/159244_library04.html   (1035 words)

  
 Thackrey Library :: Introduction
For others, to read is to savor the pleasures of the text, the light of distant lives, the tastes of language, the freshness and strangeness of the infinity of worlds lived within the world.
So it will appeal only to a certain kind of reader, and is subtitled "The Thackrey Library" because it consists in excerpts I have made over a period of many years from my own library of early printed books and manuscripts on the making and understanding of wine.
Not only because they are so rare in themselves as barely to be represented in the collections of any nation's major libraries, but more inexcusably by far, because no anthology of the basic texts in the making and understanding of wine has ever, to my knowledge, been published.
www.wine-maker.net /LibraryIntroPage.html   (911 words)

  
 NetLogo Models Library: Merge Sort
This model is a visual demonstration of a standard sort algorithm called merge sort.
Since this model aims to demonstrate the sort algorithm visually, the code is more complex than would be needed if the model only needed to sort the numbers.
The number of steps required to sort n items using this algorithm is the ceiling of logarithm (base 2) of n.
ccl.northwestern.edu /netlogo/models/MergeSort   (627 words)

  
 Library Scavenger Hunts   (Site not responding. Last check: 2007-10-18)
However, it is generally agreed that this type of activity must be preceded by an introduction to library resources, either by the instructor or a reference librarian (Mathews.
However, Baxter (1986), who is a librarian, argued that scavenger hunts fail to "develop library research skills that are easily transferable to a serious literature search, nor do they demonstrate a systematic research strategy" (pp.
Mathews (1978), however, contended that a library "treasure hunt" has the benefits of helping the student learn the locations of various resources in his or her library (sort of constructing a cognitive map) and structuring repeated exposures to important resources.
www.unc.edu /~emgallag/teachconf/scavengerhunt.html   (392 words)

  
 Sort by Genre - Anime Academy Lounge
A Sort by Format idea never occured to me. It could prove to be helpful in some cases, one of the most obvious being when someone has heard of an anime, but isn't sure if it's an OAV, TV-Series, or movie.
As for the Format Idea it will be cool and all, but again rather pointless, since most people tend to look for an anime by name or grade, the format its secondary and it is accesible trough the main list or the review it self.
IMHO I don't think that "sort by format" is really very useful and would just make more work for you professors.
www.animeacademy.com /forums/showthread.php?t=5969   (1001 words)

  
 EndNote 7 Guide - UCB Optometry Library
Sort library by author name by clicking on the Author column heading.
Once a file is put into the proper format (a text file) and an import option or filter is used, the import procedures are the same.
Use EndNote Library as the import option and follow the same procedures to import data from one EndNote library into another.
www.lib.berkeley.edu /OPTO/enote7.html   (1575 words)

  
 A Callable, thread-safe Sort, Merge Library allowing, Multiple sort orders : The Multi-CoSORT API, mcs   (Site not responding. Last check: 2007-10-18)
As a convenience, the MCS API introduces the CoSORT Sort Object data structure, which allows callers to easily manage several sort jobs at once.
This is especially convenient for situations where one data stream is to be split and sorted in several different ways, such as multiple database index generation.
The flexible architecture of the MCS API allows programmers to manage several sort jobs from within a single thread (or process), and from within as many threads or processes as desired.
www.cosort.com /public/solutions/cosort/api_mcs.htm   (140 words)

Try your search on: Qwika (all wikis)

Factbites
  About us   |   Why use us?   |   Reviews   |   Press   |   Contact us  
Copyright © 2005-2007 www.factbites.com Usage implies agreement with terms.