List Definition and 494 Threads
-
S
Schools Graduate school asking for a list of universities I apply to
Hi, I am filling up graduate school applications, but I am asked to list the universities I am applying for. Any ideas about the reasons they ask us? Should I tell them? I am afraid this information will affect the admission in a bad way.- sornsopheak
- Thread
- Apply Graduate Graduate application Graduate school List School Universities
- Replies: 22
- Forum: STEM Academic Advising
-
MHB List that contains only the elements of the one of the two given lists
Hi! (Smile) Given two sorted lists $M_1, M_2$, I want to write an algorithm, that creates a new list $M_3$, that contains the elements of $M_1$, that do not exist in $M_2$. That's what I have tried: Algorithm(M1,M2){ pointer q=M1, p=M2, M3; int same=0; if (M1==NULL) return error...- evinda
- Thread
- Elements List
- Replies: 6
- Forum: Programming and Computer Science
-
MHB Creating List $L_3$ from $L_1,L_2$ w/ $O(n_1+n_2)$ Complexity
Hello! (Wave) Given two lists, $L_1$ with $n_1$ elements and $L_2$ with $n_2$ elements, I want to write an algorithm that creates a new list $L_3$, for which the following stand: The elements at the odd positions of $L_3$ are these that are at the even positions of $L_1$ The elements at the...- evinda
- Thread
- Complexity List
- Replies: 7
- Forum: Programming and Computer Science
-
MHB What is the Efficient Way to Perform a Zig-Zag Traversal in a List?
Hello! (Smile) Suppose that each node of a list has the following structs: string $$$$ num $$$$ next It is given a string $w$. Suppose that $w$ is in the list at a node $p$, of which the struct num has the value n. We are looking for the value of the struct string of the node that...- evinda
- Thread
- List
- Replies: 6
- Forum: Programming and Computer Science
-
J
MHB Can anyone help me reverse a list in Lisp without using the reverse function?
Hi, I'm trying to reverse a list in Common Lisp without using the reverse function. I've had a go but it's not working. Can anyone help? (defun my-reverse(my-list) (cond ((null my-list) nil) (t (append (my-reverse(cdr my-list)) (list (car my-list)))))) Thanks.- JamesBwoii
- Thread
- List Reverse
- Replies: 7
- Forum: Programming and Computer Science
-
B
Help please -- Is my list okay so far for Condensed Matter? (grad app.)
Hey Everyone, Would appreciate any advice or suggestions. I know that I do not have many "safeties", but that is because I am applying to a bunch of master's programs (not physics /because of research interest) Physics GPA: 3.5ish ( No grade lower than a B... lots of advanced courses!)...- bluechic92
- Thread
- App condensed Condensed matter List Matter
- Replies: 2
- Forum: STEM Academic Advising
-
MHB Using a Sentinel Value to Find an Element in a List
Hi! (Smile) If we want to look for an element $x$ in a list, we can use a sentinel value. What do we gain, with the use of a sentinel value?- evinda
- Thread
- Element List Value
- Replies: 4
- Forum: Programming and Computer Science
-
MHB How to Properly Implement the Delete() Algorithm for Linked Lists
Hello! (Smile) I want to implement the algorithm Delete() for linked lists. That's what I have tried: void Delete(pointer L,Type x){ if (L==NULL){ printf("There is no element x in the list. \n"); return; } pointer q=L; while (q!=NULL &&...- evinda
- Thread
- Delete List
- Replies: 7
- Forum: Programming and Computer Science
-
M
MHB Separating a List: What to Do After Deallocating?
Hey! :o When I have to delete a list from an array of linked-lists, do I have to delete all the nodes of the list? Or do I have to do also something at the array?? There is a list, I have to separate this list into two others and delete the initial list from the array. I used a function to...- mathmari
- Thread
- List
- Replies: 1
- Forum: Programming and Computer Science
-
Schools Is this an appropriate list of Grad schools for me?
So I'm looking for opinions on the list of grad schools I'm looking to apply for. I am not sure if I am applying to too many "reach" schools or not. I am interested in doing plasma physics, most likely experiment and computation, but theory isn't completely out of the question either. First...- retro10x
- Thread
- Grad Grad school List Plasma physics Schools
- Replies: 9
- Forum: STEM Academic Advising
-
T
Official Transcript vs Unofficial List of Courses
I'm planning to contact potential advisors for grad school. I want to send my transcript, but the unofficial transcript I get from my school's website is really cluttered with information that isn't very helpful or informative. I feel like a simple list of courses and grades for each semester...- thegreenlaser
- Thread
- Courses List
- Replies: 1
- Forum: STEM Academic Advising
-
D
What is your proposed list of experiences for a Physics II (Electricity and Magnetism) laboratory?
I'm a new TA in a physics laboratory and we're going to redesign experiences for fundamental physics II lab that is a semester course on electricity and magnetism for undergraduates in their 2nd year. What is your proposed list of experiences for a Physics II (Electricity and Magnetism)...- Dorea
- Thread
- Electricity and magnetism Laboratory List Magnetism Physics Physics ii
- Replies: 9
- Forum: STEM Educators and Teaching
-
J
Mathematica How can I convert a matrix to a list in Mathematica?
Hi everyone: I would like to join all elements of on matrix into just one list: matrix = 1 2 3 4 5 6 7 8 9 into list = {1,2,3,4,5,6,7,8,9} Anyone has a solution for this? Thanks- johnobono
- Thread
- List Mathematica Matrix
- Replies: 2
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
A
Complete List of 230 Space Groups in CSV Format for Easy Access
Does anyone know of anywhere on the internet where I may find a spreadsheet containing the names of the 230 space groups? In a perfect world this would simply be a csv file containing the schoenflies and hermann-maguin notations; but I can't be too picky. Thanks- abstracted6
- Thread
- Groups List Space
- Replies: 1
- Forum: Atomic and Condensed Matter
-
List of Stars and Objects equating Names
I am trying to create a list of stars. I need a comprehensive comparison between: FK5#s, HD#s and BD#s and NGC#s, IC#s and Proper Names (like Eagle Nebula) Here is a reference from FK5#s, HD#s and BD#s: http://www-kpno.kpno.noao.edu/Info/Caches/Catalogs/SAO/sao_catalog.html What...- Philosophaie
- Thread
- List Stars
- Replies: 3
- Forum: Astronomy and Astrophysics
-
O
MHB List all values of x for which each rational expression is undefined.
List all values of x for which each rational expression is undefined: $$\frac{x^2-9}{x^2-3x-10}$$ Answer is 3, -3 q1) Are these -, and positive answer interchangeable ones because it is a rational expression so when I see rational that's going to signal it's going to need 2 answers (either...- OMGMathPLS
- Thread
- Expression List Rational
- Replies: 20
- Forum: General Math
-
B
Dumb Question: When Factoring Do We List Negative Factors?
I only see positive factors in my book. Example: 2 and 2 are factors of 4. But aren't -2 and -2? Is there some unspoken rule in math that only positive factors count? Thanks!- bballwaterboy
- Thread
- Factoring Factors List Negative
- Replies: 1
- Forum: General Math
-
R
Double-Slit Experiment Variations List
Hi all, first post and an amateur enthusiast here. I'm a 33 year old programmer who takes an interest in the mysteries of quantum mechanics and trying to nurture my own little theories. I've came across variations of the double slit experiment and was wondering if there's such a resource that...- ricardo81
- Thread
- Double-slit Double-slit experiment Experiment List
- Replies: 13
- Forum: Quantum Physics
-
C
Let's make a list of plausible, habitable exomoons/planets
Aim: create a thread for prospective writers, which kind of planet/moons is possible to set their story. The best are the cool and exotic (exotic for an Earthling) ones - "floating mountains" - forbidden. Tidally locked - OK. Conditions: a ship wrecked astronaut would not be immediately doomed...- Czcibor
- Thread
- List
- Replies: 2
- Forum: Sci-Fi Writing and World Building
-
What are the Standard Integrals?
Definition/Summary This article is a list of standard integrals, i.e. the integrals which are commonly used while evaluating problems and as such, are taken for granted. This is a reference article, and can be used to look up the various integrals which might help while solving problems...- Greg Bernhardt
- Thread
- Integrals List Standard
- Replies: 1
- Forum: General Math
-
W
XML Animation List Duration not working
I am creating a border for an image view using xml. This is what I have: <animation-list xmlns:android="http://schemas.android.com/apk/res/android" > <item android:duration="200"> <shape android:shape="rectangle" > <stroke...- whitehorsey
- Thread
- Android Animation List xml
- Replies: 4
- Forum: Programming and Computer Science
-
C
Generate a function from a list of numbers
I have a list of numbers x = [1, 11, 21, 1211, 111221,...], I need to find the 31st number in that list.- chipChocolate
- Thread
- Function List Numbers
- Replies: 7
- Forum: Precalculus Mathematics Homework Help
-
A
C/C++ How to Improve the Design of a Linked List Class in C++?
I decided to make a library for some common data structures and I'm facing some design problems. I wanted to implement linked list using classes in c++. Here is the sample class:- class Linked_List { private: int key; Linked_List* next; public: Linked_List(int key)...- Avichal
- Thread
- C++ Class Design List
- Replies: 3
- Forum: Programming and Computer Science
-
Still looking for a list of Ramanujan identities, very expensive
It is surprising how expensive the books are that contain the Ramaujan identities and equations. I understand the work to 'prove' them must have been a tremendous undertaking however I find the price of the 'notebooks' for Ramanujan's work prohibitively expensive. I believe wolfram put it...- mesa
- Thread
- identities List
- Replies: 10
- Forum: General Discussion
-
Looking for a book with a comprehensive list of Ramanujan's identities
I am looking for a book that has a comprehensive list of Ramaujans Identities and Equations. I have read that he created 3900 such pieces of work and it would be fascinating to see such a collection that came from just one person.- mesa
- Thread
- Book identities List
- Replies: 2
- Forum: Science and Math Textbooks
-
H
Comp Sci Problems With Sorting A Linked List In Java
Homework Statement Create a SortedLinkedList class which implements the LinkedListInterface. Remember to use the Comparable class Basically, I need to implement a sorted linked list that uses generics and uses compareTo to sort objects. I need it to be able to sort names...- heatengine516
- Thread
- Java List Online classes Sorting
- Replies: 3
- Forum: Engineering and Comp Sci Homework Help
-
T
A list of Physicist and their contributions
Below is a list of physicist I compiled, and there achievements. I have sources if you want them. Do tell me if there is any more I should add or anything I should add to their bios, thanks in advance.θ Richard Feynman (1918-1988) Developing Path Integral Formalism of Quantum Field...- TorqueDork
- Thread
- Albert einstein Feynman diagram List Physicist Princeton
- Replies: 7
- Forum: Other Physics Topics
-
G
List of Charge Conjugation and Parity numbers
Hi everyone, i am just wondering why I cannot find a list of Charge Conjugation and Parity numbers for all the appropriate particles? I mean, I can look online and sift through sources for individual particles (for example, after some research I have found the the photon has a charge...- grzegorz19
- Thread
- Charge Charge conjugation List Numbers Parity
- Replies: 3
- Forum: High Energy, Nuclear, Particle Physics
-
Looking for comprehensive list (or link) of even power summations
I have a function that results in 'exact' values for even powered summation series but it gives odd results for powers of '2' and '12+', how exciting! Unfortunately this also means the function is a far cry from a 'general solution'... Does anyone have a comprehensive list of power summations...- mesa
- Thread
- even Link List Power
- Replies: 6
- Forum: General Math
-
J
A remove_duplicates() function in my linked list class: Is this right?
I'm making a generic linked list class. For reference, [FONT="Courier New"]firstNodePtr and [FONT="Courier New"]lastNodePtr are pointers to the nodes at the beginning and end of the list. I'm trying to make a function that removes duplicate elements, which in turn calls a function for deleting a...- Jamin2112
- Thread
- Class Function List
- Replies: 3
- Forum: Programming and Computer Science
-
Scientists find near-definitive list for rare earthquake lights
Scientists find near-definitive list for rare "earthquake lights" Scientists find records of rare 'earthquake lights' http://www.usatoday.com/story/news/nation/2014/01/02/earthquake-lights-rare-phenomenon/4255097/- Greg Bernhardt
- Thread
- Earthquake Lights List
- Replies: 11
- Forum: Earth Sciences
-
What makes spin different from classical angular momentum and magnetic moment?
Dear members, I'd like to collect those properties of "spin" that makes it different to a normal (classical) angular momentum or magnetic moment. Please help me, correct, reword my sentences one by one. I'd like to create a short but still understandable and correct list. 1. Spin quantum...- zrek
- Thread
- List Properties Spin
- Replies: 2
- Forum: Quantum Physics
-
A
How can the runner technique be used to arrange this linked list?
Homework Statement Homework Equations The Attempt at a Solution I don't understand how when p1 hits the end of the linked list, p2 will be at the midpoint. This is how I am imagining it if n=3. Each step below represents an iteration. 1. a1 (p1, p2)->a2->a3->b1->b2->b3...- ainster31
- Thread
- List
- Replies: 3
- Forum: Engineering and Comp Sci Homework Help
-
A
List of recognized journals in Relativity and Gravitation
I am very interested to know which peer-reviewed journals are considered seriously by mainstream scientists for articles on SR/GR (even if they are not restricted to SR/GR only). There are a lot of 'peer-reviewed' journals out there which publish on SR/GR, but which are the well regarded ones...- adrian_m
- Thread
- Gravitation Journals List Relativity
- Replies: 4
- Forum: STEM Academic Advising
-
Mathematica Mathematica ListPlot: Plotting a Continuous Graph
Hi all, I have a function varying in mass varible as 1000 - 1500-2000, etc, I made a list of the values of this function for these values of mass but when I plot by mathimatica by ListPlot it appears some how discerte between the points I defind not a continus graph. So any help to...- Safinaz
- Thread
- List Mathematica Plot
- Replies: 1
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
I
Schools List of All Physics Graduate School Deadlines?
Does anyone know if there exists a resource/web page on the Internet that lists all physics graduate school programs and their deadlines?- Izzhov
- Thread
- Graduate Graduate school List Physics Physics graduate Physics graduate school School
- Replies: 2
- Forum: STEM Academic Advising
-
G
Missing Numbers in Consecutive List
Hello All, I am having 1000 consecutive numbers always starting with 1, and there could be upto 24 missing numbers from the list. My question is, what pieces of information should I have in order to find out those missing numbers. So far I came up with, 1. Sum of missing numbers. 2...- ganeshsrivatsa
- Thread
- List Numbers
- Replies: 7
- Forum: General Math
-
G
LaTeX Latex: minipage for list and table side-by-side
Say, I am trying to learn how to use minipage but there is some space on top of the table that seems to be coming from nowhere...any idea what might be going on? The huge space is still there even when I remove vspace 10pt, besides, 10pt is not that much...anyway. thanks, gsal...- gsal
- Thread
- Latex List Table
- Replies: 7
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
D
Shuffling cards (a list of integers)
Hi, I found this problem along with the solution: "Given an array of distinct integers, give an algorithm to randomly reorder the integers so that each possible reordering is equally likely. In other words, given a deck of cards, how can you shuffle them...- divB
- Thread
- Cards Integers List
- Replies: 1
- Forum: Programming and Computer Science
-
B
C linked list with an array inside
I have pasted my code here : http://pastebin.com/nMNarH9i It is in language C. Basically, I am reading in 5 numbers at a time. Putting these numbers in array one_vote_array. Then I need to put this array in a structure vote_node. I also then change my next pointer in the structure to head...- baddin
- Thread
- Array List
- Replies: 9
- Forum: Programming and Computer Science
-
S
Where can I find a list of proof identities?
Does anyone know if there is a good place to find a list of proof identities? Basic stuff like the disjoint or if-then in logic symbols. It would be nice to have a place to make sure I'm remembering them correctly and to search for more. Thanks!- Stickybees
- Thread
- identities List Proof
- Replies: 1
- Forum: Set Theory, Logic, Probability, Statistics
-
N
Fortran Fortran: variables in the list of arguments for Subroutines
Hi all, Suppose I declare X in the main program. Then in the following subroutine: Call example(list of arguments) ------------------------------------ subroutine example(list of arguments) x=y+z end subroutine ------------------------------------- I have two options: (a)...- nguyenthanhlam
- Thread
- Fortran List Variables
- Replies: 14
- Forum: Programming and Computer Science
-
A
Fortran Identify explicit shape spec list in the FORTRAN code
Identify "explicit shape spec list" in the FORTRAN code Hi, I'm trying to do some source code analysis using the ROSE compiler infrastructure on some of the kernels in NAS Parallel benchmark. I get an error while parsing the Embarrassingly Parallel kernel. Digging further, I gathered that...- anirudhnair
- Thread
- Code Explicit Fortran List Shape
- Replies: 1
- Forum: Programming and Computer Science
-
List of matrix elements or Feynman diagrams
Is there a list of matrix elements for elementary processes? ##f\bar{f}\to\gamma\to f^\prime\bar{f}^\prime## ##f\bar{f}\to Z^0\to f^\prime\bar{f}^\prime## ##ff^\prime\to W \to \ldots## ##qq^\prime\to \ldots## ##\ldots##- tom.stoer
- Thread
- Diagrams Elements Feynman Feynman diagrams List Matrix
- Replies: 1
- Forum: High Energy, Nuclear, Particle Physics
-
J
MHB Maximum number of comparisons required for a list of 6 numbers
The question asks me as follows: "What is the maximum number of comparisons required for a list of 6 numbers? Is the correct answer as follows: The maximum number of comparisons required for a list of 6 numbers is 5 comparisons. If this is not right, then can somebody please help and explain...- Joystar77
- Thread
- List Maximum Numbers
- Replies: 8
- Forum: Programming and Computer Science
-
J
MHB When Bubble Sort to sort a list of numbers 7, 12, 5, 22, 13, 32
Can somebody tell me which example is right when a question that is given to me says to bubble sort a list of numbers 7, 12, 5, 22, 13, 32? I found two examples and one was with a graph that included Original List, Pass 1, Pass 2, Pass 3, Pass 4, Pass, 5, and Pass 6, the numbers with 7 on one...- Joystar77
- Thread
- Bubble List Numbers Sort
- Replies: 6
- Forum: Programming and Computer Science
-
A
Best Puzzle, Logic & Brain Teaser Books - What's Your Favorite?
list the books you know..! List all puzzle, logic and brain teaser books you know with the little bit of information AND also what subjects is ur fav? let us know ..- abiphysics
- Thread
- Books List
- Replies: 1
- Forum: Science and Math Textbooks
-
O
Does an explicit list of 20 independent compenents of Riemman exist?
Hello all, I have been given a problem where I am asked to calculate "all" the components of the Riemann tensor in a gross non-diagonalized metric. I know there exists at most 20 independent components of Riemann, but I want to actually compose a list of these combinations. It is easy...- ozone
- Thread
- Explicit Independent List Riemman
- Replies: 6
- Forum: Special and General Relativity
-
MHB -aug.16.data list from table intervals
in creating a list of numbers to find mean, median, mode, range and some other questions with this table height in meters| frequency $$8 \le h < 10\ \ \ \ \ \ \ \ \ \ 6$$ $$10 \le h < 12\ \ \ \ \ \ \ \ 5$$ $$12 \le h < 14\ \ \ \ \ \ \ \ 7 $$ $$14 \le h < 16\ \ \...- karush
- Thread
- intervals List Table
- Replies: 16
- Forum: General Math
-
M
MATLAB Matlab fails to access a list of variables
So I have a list of variables, defined in my workspace, and I'm trying to access them each in turn to compare them to a larger matrix A. The eval function calls each variable in turn, stores it under temporary matrix B, then compares it to matrix A, does the necessary calculation, and stores it...- MartinV
- Thread
- List Matlab Variables
- Replies: 1
- Forum: MATLAB, Maple, Mathematica, LaTeX