- 데블스캠프2009/목요일/연습문제/다빈치코드/박준호 . . . . 33 matches
hand handsort[13];
void CmpColor(hand handsort[], int i);
DrawCard(handsort,index);
printf("%c%d ",handsort[index].color1, handsort[index].number);
void DrawCard(hand handsort[], int index)
handsort[index].number = w_block[num];
handsort[index].color1 = 'w';
handsort[index].number = b_block[num];
handsort[index].color1 = 'b';
void CmpColor(hand handsort[],int i)
if(handsort[i].color1 == 'w')
a = handsort[i].color1;
handsort[i].color1 = handsort[i+1].color1;
handsort[i+1].color1 = a;
b = handsort[i].number;
handsort[i].number = handsort[i+1].number;
handsort[i+1].number = b;
if(handsort[i].number >= handsort[(i+1)].number)
if(handsort[i].number == handsort[i+1].number)
CmpColor(handsort, i);
- TermProject/재니 . . . . 32 matches
void menu1(), menu2(), menu3(), menu4(), sub_menu(), avr(), sort(int, int),
char sort_name[students + 1][7];
int sort_stats[students + 1][4];
sort_name[i][j] = name[i][j];
sort_stats[i][j] = stats[i][j];
if (sort_stats[i][select] > sort_stats[j][select]) // 선택된 과목에 따라
sort(i, j); // 정렬 함수를 호출함
sort(i, j); // 루프에 따라 정렬하기 위해 i, j 변수를 전달함
cout << sort_name[i] << "t" << " " << sort_stats[i][0] // 이름과 학번 출력
<< "t " << sort_stats[i][select] << endl; // 성적 출력
void sort(int i, int j) // 사용자의 선택에 따라 i, j 변수를 전달받아 정렬함
sort_name[students][k] = sort_name[j][k];
sort_name[j][k] = sort_name[i][k];
sort_name[i][k] = sort_name[students][k];
sort_stats[students][k] = sort_stats[j][k];
sort_stats[j][k] = sort_stats[i][k];
sort_stats[i][k] = sort_stats[students][k];
avr_ind[i] = (sort_stats[i][1] + sort_stats[i][2] + sort_stats[i][3]) / 3.0;
sort(i, j); // 데이터의 정렬을 실행하고
cout << sort_name[i] << "t "; // 이름을 출력함
- ClassifyByAnagram/김재우 . . . . 19 matches
def testSortChar( self ):
self.assertEquals ( 'abc', a.sortChar( 'abc' ) )
self.assertEquals ( 'abc', a.sortChar( 'cba' ) )
def sortChar( self, word ):
lst.sort()
self.dictionary.setdefault( self.sortChar( word ) ,[]).append( word )
public void TestSortWord()
Assertion.AssertEquals( "abc", anagram.SortWord( "cba" ) );
Assertion.AssertEquals( "ab", anagram.SortWord( "ba" ) );
Assertion.AssertEquals( "aa", anagram.SortWord( "aa" ) );
public String SortWord( String word )
//SortedList list = new SortedList();
list.Sort();
String sortedWord = SortWord( word );
ArrayList list = (ArrayList) m_dictionary[ sortedWord ];
m_log.Write( "-" + word + " add " + sortedWord );
m_dictionary.Add( sortedWord, list );
m_log.Write( "-" + word + " append " + sortedWord );
public void testSortWord() {
assertEquals( "ab", anagram.sortWord( "ba" ) );
- ClassifyByAnagram/sun . . . . 18 matches
* genKey() 메소드의 성능 개선. qsort2([http://www.cs.bell-labs.com/cm/cs/pearls/sortanim.html ProgrammingPerals 참고]) 이용.
qsort2( 0, seq.length-1 );
private void qsort2( int l, int u )
qsort2( l, j-1 );
qsort2( j+1, u );
qsort2( 0, seq.length-1 );
private void qsort2( int l, int u )
qsort2( l, j-1 );
qsort2( j+1, u );
qsort2( 0, seq.length-1 );
private void qsort2( int l, int u )
qsort2( l, j-1 );
qsort2( j+1, u );
qsort2( key, 0, key.capacity()-1 );
private void qsort2( ByteBuffer buf, int l, int u )
qsort2( buf, l, j-1 );
qsort2( buf, j+1, u );
- 데블스캠프2005/RUR-PLE . . . . 17 matches
|| [데블스캠프2005/RUR-PLE/Sorting] ||
* sorting 문제 120분
* sorting 문제를 풀고나서 시간 남은 분은 해보시길. [http://rur-ple.sourceforge.net/en/amazing1.htm 러플 Amazing 설명]
== Sorting ==
* sort0_1.wld 파일을 연다.
http://rur-ple.sourceforge.net/images/sort1_start.png
http://rur-ple.sourceforge.net/images/sort1_end.png
* 다음은 sort0_2.wld 파일을 연다.
http://rur-ple.sourceforge.net/images/sort2.png
http://rur-ple.sourceforge.net/images/sort2.png
* sort1 파일을 연다.
http://rur-ple.sourceforge.net/images/sort3_start.png
http://rur-ple.sourceforge.net/images/sort3_end.png
* sort2 는 추후 공개
* sort1, sort2 맵을 가장 먼저 모두 오름차순으로 정렬하는 분에게 [데블스캠프/2005/RUR-PLE/경품]을 드립니다.
* 05 [조현태] 군이 가장 먼저 sorting을 해결하여 경품을 탔습니다. 이후 01 김정현 이 sort2 맵에 대해서 해결하였지만 sort1에 대해서는 부분적으로 해결하였습니다.
- 코드레이스/2007/RUR_PLE . . . . 16 matches
* sorting 문제를 풀고나서 시간 남은 분은 해보시길. [http://rur-ple.sourceforge.net/en/amazing1.htm 러플 Amazing 설명]
== Sorting ==
* sort0_1.wld 파일을 연다.
http://rur-ple.sourceforge.net/images/sort1_start.png
http://rur-ple.sourceforge.net/images/sort1_end.png
* 다음은 sort0_2.wld 파일을 연다.
http://rur-ple.sourceforge.net/images/sort2.png
http://rur-ple.sourceforge.net/images/sort2.png
* sort1 파일을 연다.
http://rur-ple.sourceforge.net/images/sort3_start.png
http://rur-ple.sourceforge.net/images/sort3_end.png
* sort2 는 추후 공개
* sort1, sort2 맵을 가장 먼저 모두 오름차순으로 정렬하는 분에게 [데블스캠프/2005/RUR-PLE/경품]을 드립니다.
* 05 [조현태] 군이 가장 먼저 sorting을 해결하여 경품을 탔습니다. 이후 01 김정현 이 sort2 맵에 대해서 해결하였지만 sort1에 대해서는 부분적으로 해결하였습니다.
- 2002년도ACM문제샘플풀이/문제E . . . . 15 matches
sort(&temp.weight[0],&temp.weight[inputData[i].n]);
int getMin(vector<int>& weights, vector<int>& sortedWeights);
bool isSamePos(vector<int>& weights, vector<int>& sortedWeights, int nth);
vector<int> sortedWeights(weights);
sort(sortedWeights.begin(), sortedWeights.end());
if(!isSamePos(weights, sortedWeights, i))
ret += sortedWeights[i];
ret += getMin(weights, sortedWeights);
int getMin(vector<int>& weights, vector<int>& sortedWeights)
if(!isSamePos(weights, sortedWeights, i))
return sortedWeights[i];
bool isSamePos(vector<int>& weights, vector<int>& sortedWeights, int nth)
return sortedWeights[nth] == weights[nth];
- 정렬/Leonardong . . . . 11 matches
ifstream fin("unsortedData.txt"); //파일 이름이...삽질 1탄~!
ofstream fout("sorted.txt");
int sorted[Asize];
fin >> sorted[i];
if (sorted[k] < sorted[j])
temp = sorted[k];
sorted[k] = sorted[j];
sorted[j] = temp;
fout << sorted[i-1] << endl;
- ACM_ICPC/2013년스터디 . . . . 10 matches
* 퀵 정렬,이진검색,parametric search - [http://211.228.163.31/30stair/guessing_game/guessing_game.php?pname=guessing_game&stair=10 숫자 추측하기], [http://211.228.163.31/30stair/sort/sort.php?pname=sort&stair=10 세 값의 정렬], [http://211.228.163.31/30stair/subsequence/subsequence.php?pname=subsequence&stair=10 부분 구간], [http://211.228.163.31/30stair/drying/drying.php?pname=drying&stair=10 건조], [http://211.228.163.31/30stair/aggressive/aggressive.php?pname=aggressive&stair=10 공격적인 소]
* [sort/권영기]
* 17 위상정렬 - [http://211.228.163.31/30stair/topo_sort/topo_sort.php?pname=topo_sort topo_sort]
* Topological sort -
* [http://homepages.ius.edu/rwisman/C455/html/notes/Chapter22/TopSort.htm]
* [http://en.wikipedia.org/wiki/Topological_sorting]
- 정렬/변준원 . . . . 10 matches
ifstream fin("UnsortedData.txt");
int sorted[10000];
int i,j,k,sort;
sort = sorted[j];
sorted[j] = sorted[k];
sorted[k] = sort;
fout << sorted[i] << endl;
- 큰수찾아저장하기/김영록 . . . . 9 matches
int width_sort(int a);
int height_sort(int a);
int all_sort();
space[i][3] = width_sort(i);
space[3][i] = height_sort(i);
space[3][3] = all_sort();
int width_sort(int a){
int height_sort(int a){
int all_sort(){
- AcceleratedC++/Chapter3 . . . . 8 matches
* 하지만.. 중간값은 그렇지가 못하다. 다 저장해놔야 한다. 그리고 sort를 해야할 것이다.
* 중간값을 찾기 위해 먼저 해야할 작업 sort : algorithm 헤더에 정의되어 있다.
// sort the grades
sort(homework.begin(),homework.end());
// sort the grades
sort(homework.begin(),homework.end());
* vector와 sort의 수행성능에 관해
* sort 작업은 Θ(nlog(n))의 시간이 걸린다.
- AcceleratedC++/Chapter13 . . . . 7 matches
상기의 함수는 sort에 의해서 각 요소의 판단식으로 사용되는 함수이다. 이 함수는 부모객체인 Core 객체 뿐만아니라, 자식 객체인 Grad객체도 대입하여 사용하는 것이 가능하다.
sort(students.begin(), students.end(), compare);
sort(students.begin(), students.end(), compare);
using std::sort;
sort(students.begin(), students.end(), compare_Core_ptrs);
using std::sort;
sort(students.begin(), students.end(), Student_info::compare);
- 데블스캠프2005/RUR-PLE/정수민 . . . . 7 matches
음.. 아주 훌륭하오. 노벨상 감이오. >ㅁ<;; 그런데 버그가 있다오. sort1에서 작동하지 않소!! 벽에 부딛힌다오.
난 돼는데 ;; sort1이 sort.wld 이맵 말하는거아냐?
근데 여전히 sort1은 안되는군..ㅎㅎ
sort1이거 나만 있는 맵인가..;;ㅎㅎ 그러니까 이거 sort할곳 바로 옆에 벽이 있는 맵에서는 안된다우..ㅎㅎ
Upload:sort1.wld
- 데블스캠프2005/RUR_PLE/조현태 . . . . 7 matches
소트 함수명은 sort()입니다.
def sort_sub():
def sort_sub_sub():
sort_sub()
sort_sub_sub()
def sort():
sort()
- 데블스캠프2010/일반리스트 . . . . 7 matches
int fn_qsort_intcmp( const void *a, const void *b )
qsort( a, MAX, sizeof(int), fn_qsort_intcmp );
== qsort by template ==
// list::sort
mylist.sort();
mylist.sort(compare_nocase);
- ClassifyByAnagram/재동 . . . . 6 matches
def testSortWord(self):
self.anagram.sortWord()
self.assertEquals(expect, self.anagram.getSortWordString())
self.anagram.sortWord()
self.anagram.sortWord()
def sortWord(self):
self.wordList.sort()
if self.anagramList[i][0] == self.getSortWordString():
self.anagramList.append([self.getSortWordString()])
self.sortWord()
def getSortWordString(self):
- IsBiggerSmarter?/문보창 . . . . 6 matches
sort(&elephant[0], &elephant[num_elephant], Elephant());
int TYPE_SORT;
if (TYPE_SORT == WEIGHT)
void sort_elephant();
sort_elephant();
void sort_elephant()
TYPE_SORT = WEIGHT;
sort(&elephant_weight[1], &elephant_weight[num_elephant+1], Elephant());
TYPE_SORT = IQ;
sort(&elephant_IQ[1], &elephant_IQ[num_elephant+1], Elephant());
- WeightsAndMeasures/신재동 . . . . 6 matches
turtles.sort(cmp = turtlesCompare)
sort()에 비교 함수('''turtlesCompare''') 넣는데 은근히 힘들었음. 처음에는 C++의 STL에서 vector에 비교 함수 넣는 것과 같으리라고 생각하고 비교 함수를 만들었는데 안되서 확인해보니 파이썬의 리스트에서는 결과를 '''{-1, 0, 1}'''로 해야지 제대로 돌아간다는 것을 알았음. --재동
>>> l.sort(key=lambda x:x.foo)
>>> l.sort(key=operator.attrgetter('foo'))
>>> l.sort(cmp=lambda a,b:cmp(a.foo,b.foo))
>>> l.sort()
- whiteblue/MyTermProject . . . . 6 matches
void sort (int *);
sort(©_data[0].kor);
sort(©_data[0].eng);
sort(©_data[0].math);
sort(©_data[0].total);
void sort(int * x) // 소트 함수
- C++스터디_2005여름/학점계산프로그램/허아영 . . . . 5 matches
//char sort_grade_name[STUDENT_NUM][10];
//double sort_grade[STUDENT_NUM];
void sort(); // 학점평균이 높은 순으로 저장.
a.sort();
void Student::sort()
- GalleryMacro . . . . 5 matches
{{{[[Gallery(col=5,nocomment,sort=name)]]}}}
5 column, with no comments, sort by name
{{{[[Gallery(col=2,sort)]]}}}
2 colum, sort by time
{{{[[Gallery(col=1,sort,showall)]]}}}
- 사랑방 . . . . 5 matches
purely functional language - Haskell 로 구현한 quick sort algorithm..
qsort [] = []
qsort (x:xs) = qsort [y|y<-xs,y<x] ++ [x] ++ qsort [y|y<-xs,y>=x]
''약간은 사기라고 봐도 됩니다. 퀵소트에서 첫번째 원소를 피봇으로 잡는 경우가 헤스켈에서 아주 간단히 표현될 수 있다는 점을 이용한 것이죠 -- 첫번째가 피봇이 되면 문제가 생기는 상황들이 있죠. 보통 헤스켈의 "간결성"을 강조하기 위해 전형적으로 사용되는 예입니다. 뭔가 독특한 점을 강조하기 위해 쓰인다는 것 자체가 이미 약간의 과장을 암시하고 있습니다. see also Seminar:QuickSort --JuNe''
- AcceleratedC++/Chapter8 . . . . 4 matches
using std::sort;
sort(v.begin(), v.end());
예를 들자면 find(B, E, D)같은 함수의 경우 ''아주 단순한 제한적 연산만을 이용''하기 때문에 대부분의 컨테이너에 대해서 사용이 가능하다. 그러나 sort(B, E)같은 경우에는 ''기본적인 사칙연산들을 반복자에 대해서 사용''하기 때문에 이런 연산을 지원하는 string, vector 만이 완벽하게 지원된다.
임의 접근 반복자르 이용하는 알고리즘은 sort. vector, string 만이 임의 접근 반복자를 지원한다. list는 빠른 데이터의 삽입, 삭제에 최적화 되었기 때문에 순차적인 접근만 가능함.
- CPPStudy_2005_1/STL성적처리_1 . . . . 4 matches
void sortBySum(vector<Student_info> &students);
sortBySum(students);
void sortBySum(vector<Student_info> &students)
sort(students.begin(),students.end(),totalCompare);
- Linux/필수명령어/용법 . . . . 4 matches
sort
- sort [ -cmuodfiMnrtb ] 파일이름(들)
sort명령의 정렬 방법에는 다음과 같은 기준이 있다.
- $ sort sample ,, 문자를 정렬
- MedusaCppStudy/세람 . . . . 4 matches
using std::sort;
sort(number.begin(), number.end());
using std::sort;
sort(nums.begin(), nums.end());
- MedusaCppStudy/신애 . . . . 4 matches
using std::sort;
sort(number.begin (),number.end());
using std::sort;
sort (english.begin(),english.end());
- OurMajorLangIsCAndCPlusPlus/stdlib.h . . . . 4 matches
== 함수 (Functions) - Searching and Sorting Functions ==
|| void qsort(void *base, size_t nitems, size_t size, int (*compar)(const void *, const void*)); || 퀵 소트 수행 ||
==== qsort(), bsearch() 예제코드 ====
/* Sort the list */
qsort(string_array, 10, 50, strcmp);
==== qsort(), bsearch() 실행 결과 ====
- TheGrandDinner/하기웅 . . . . 4 matches
sort(&team[i].person[1], &team[i].person[team[i].memberNum+1]);
sort(&team[1], &team[input1+1], compareTeam);
sort(&nTable[1], &nTable[input2+1], compareTable);
sort(&team[1], &team[input1+1], compareTeam2);
- 중위수구하기/나휘동 . . . . 4 matches
elif sys.argv[2] == "sort":
test.sort()
almost same. Sort is always faster than mine.
elif sys.argv[2] == "sort":
test.sort()
- 02_Python . . . . 3 matches
=== Quick Sort in Python ===
def qsort(aList):
return qsort(ltList)+[aList[0]]+qsort(gtList)
- C++스터디_2005여름/학점계산프로그램/문보창 . . . . 3 matches
void sort_student(); // 평점으로 정렬
void CalculateGrade::sort_student()
sort_student();
- CPPStudy_2005_1/STL성적처리_2 . . . . 3 matches
총점 sort|}}
쩝.. -_-;; map 을 써봐야한다는 강박관념때문에 쓰기는 했는데.. -_-;; spec에 sort가있었다. ;; 아무래도 다시 짜는게 더 나을 것 같다.
* sorting 이 안되는 것이 map 의 단점이다. ㅡ,.ㅡ; 그야말로 검색할때만 좋은 것 같다.
- CodeRace/20060105/아영보창 . . . . 3 matches
void sortShow()
sort(&container[0], &container[container.size()], Word());
sortShow();
- JollyJumpers/황재선 . . . . 3 matches
nums = sort(differValue);
private int[] sort(int[] aNum) {
1. {{{~cpp TreeSet}}} 을 사용했다. sort에 log(n)이 소요된다.
- TugOfWar/김회영 . . . . 3 matches
void sort(int* array,int count);
sort(nWeightOfPeople,nPeople);
void sort(int* array,int count)
- TwistingTheTriad . . . . 3 matches
In MVC, most of the application functionality must be built into a model class known as an Application Model. It is the reponsibility of the application model to be the mediator between the true domain objects and the views and their controllers. The views are responsible for displaying the domain data while the controller handle the raw usr gestures that will eventually perform action on this data. So the application model typically has method to perform menu command actions, push buttons actions and general validation on the data that it manages. Nearly all of the application logic will reside in the application model classes. However, because the application model's role is that of a go-between, it is at times necessary for it to gain access to the user interface directly but, because of the Observer relationship betweeen it and the view/controller, this sort of access is discouraged.
For example, let's say one wants to explicitly change the colour of one or more views dependent on some conditions in the application model. The correct way to do this in MVC would be to trigger some sort of event, passing the colour along with it. Behaviour would then have to be coded in the view to "hang off" this event and to apply the colour change whenever the event was triggered. This is a rather circuitous route to achieving this simple functionality and typically it would be avoided by taking a shoutcut and using #componentAt : to look up a particular named view from the application model and to apply the colour change to the view directly. However, any direct access of a view like this breaks the MVC dictum that the model should know nothing about the views to which it is connected. If nothing else, this sort of activity surely breaks the possibility of allowing multiple views onto a model, which must be the reason behind using the Observer pattern in MVC in the first place.
- Yggdrasil/가속된씨플플/4장 . . . . 3 matches
* 구조체 만드는 법은 다 알고 있으니 넘어가고, sort()에 전달인자로 구조체를 넘겨주게 되면, 어떤 기준으로 정렬할 것인지 알 수가 없다. 그래서 3번째 전달인자를 사용할 수 있다. 즉,
sort(students.begin(), students.end(), compare);
인데, compare는 함수인데 괄호는 쓰지 않는다. 괄호를 쓸 경우 그 인자까지 알아서 써줘야할 것 같은데, sort의 정확한 구조를 잘 모르는 나에겐 좀 벅찬 방법이다. 하여튼 괄호는 쓰지 않는다.
- whiteblue/MyTermProjectForClass . . . . 3 matches
void sort(bool IsItSort , int select , Data d[]);
bool IsItSort();
void Judgement::sort(bool IsItSort , int select , Data d[]) // 소트 부분
if (IsItSort)
bool Order::IsItSort()
judgement.sort(order.IsItSort(), order.subNumber(), data);
- 몸짱프로젝트/BinarySearch . . . . 3 matches
int * sort(int aArr[]);
int * p_arr = sort(arr);
int * sort(int aArr[])
- 새싹교실/2011/學高/10회차 . . . . 3 matches
* selection sort 마저 다 짜오세요. 1등으로 짜는 사람한테 보상있음(다만 그 소스코드를 설명하는 시험 봄)
* bubble sort 설명하고, selection sort 작성하게 시킴
- 새싹교실/2011/學高/9회차 . . . . 3 matches
* selection sort 마저 다 짜오세요. 1등으로 짜는 사람한테 보상있음(다만 그 소스코드를 설명하는 시험 봄)
* bubble sort 설명하고, selection sort 작성하게 시킴
- 2002년도ACM문제샘플풀이/문제D . . . . 2 matches
sort(&inputData[i].weight[0],&inputData[i].weight[inputData[i].n],greater<int>());
sort(weights.begin(), weights.end());
- AcceleratedC++/Chapter9 . . . . 2 matches
using std::sort; using std::streamsize;
sort(students.begin(), students.end(), compare);
- JollyJumpers/임인택3 . . . . 2 matches
% 리스트에서 인접한 값의 차가 들어있는 리스트를 sort 해서 리스트 원소의 합과 가우스 합(?)을 비교.
jollyResult([H|T], lists:usort(jollySub(H, T, []))).
- Pairsumonious_Numbers/권영기 . . . . 2 matches
sort(checkans, checkans+cnt);
sort(temp, temp + m);
- ProjectPrometheus/AT_RecommendationPrototype . . . . 2 matches
bookList.sort()
bookList.sort()
- TugOfWar/강희경 . . . . 2 matches
list.sort()
teamTuple.sort()
- WhyWikiWorks . . . . 2 matches
* anyone can play. This sounds like a recipe for low signal - surely wiki gets hit by the unwashed masses as often as any other site. But to make any sort of impact on wiki you need to be able to generate content. So anyone can play, but only good players have any desire to keep playing.
* wiki is not wysiwyg. It's an intelligence test of sorts to be able to edit a wiki page. It's not rocket science, but it doesn't appeal to the TV watchers. If it doesn't appeal, they don't participate, which leaves those of us who read and write to get on with rational discourse.
- [Lovely]boy^_^/[Lovely]boy^_^/USACO/Barn . . . . 2 matches
sort(ret.begin(), ret.end(), greater<int>());
sort(ar.begin(), ar.end());
- 벡터/김태훈 . . . . 2 matches
sort(stre.begin(), stre.end(),compare);
sort(stre.begin(), stre.end(),compare2 );
- 벡터/임민수 . . . . 2 matches
sort(vector1.begin(), vector1.end(), comp_score);
sort(vector1.begin(), vector1.end(), comp_name);
- 벡터/황재선 . . . . 2 matches
sort(ss.begin(), ss.end(), compareWithName);
sort(ss.begin(), ss.end(), compareWithScore);
- 새싹교실/2011/데미안반 . . . . 2 matches
* A언어 : ALGOL을 말합니다. 고급 프로그래밍 언어(어셈블리나 기계어를 저급 프로그래밍 언어라고 합니다)로 각광받던 포트란ForTran에 대항하기 위해 유럽을 중심으로 개발된 프로그래밍 언어입니다. ALGOL은 Algorithm Language의 약자로서, 이름 그대로 알고리즘 연구개발을 위해 만들어졌습니다. 하지만 ALGOL은 특정한 프로그래밍 언어를 지칭하기 보다는 C언어나 파스칼과 같이 구조화된 프로그래밍 언어를 지칭하는 말(ALGOL-like programming language)로 쓰입니다. [http://kin.naver.com/qna/detail.nhn?d1id=1&dirId=1040101&docId=68855131&qb=Q+yWuOyWtCBC7Ja47Ja0IEHslrjslrQ=&enc=utf8§ion=kin&rank=1&search_sort=0&spq=0&pid=ghtBIz331ywssZ%2BbORVssv--324794&sid=TYBj6x1TgE0AAE@GUeM 출처 링크! 클릭하세요:)]
* [강소현] - 다차원 배열의 선언 및 초기화와 2차원 배열을 이용한 행렬 계산을 실습항였습니다. 이후에 sort와 search 부분도 나가려 하였으나...올 해는 꼭 티셔츠를 받고 말겠다!라는 의욕으로 함께 줄 서서 기다렸습니다 /ㅁ/ 아 줄이 안끊겨서 다행이에요ㅎㅎ
- 영호의해킹공부페이지 . . . . 2 matches
Within a few hours, our sniffer logs begin to pick up all sorts of interesting
lamers making fools of themselves on IRC and all sorts of funny stuff. Aaah,
- Bigtable/분석및설계 . . . . 1 match
1. memtable 구현, 어떻게 sort하나?, 키 밸류는 array?...
- Bigtable기능명세 . . . . 1 match
1. 태블릿 split시 키는 반드시 sort되어 있어야 한다.
- Bridge/권영기 . . . . 1 match
sort(man, man + n);
- C 스터디_2005여름/학점계산프로그램/김태훈김상섭 . . . . 1 match
sort(ban.begin(),ban.end(),zcompare);
- ClassifyByAnagram/1002 . . . . 1 match
result.sort()
- ClassifyByAnagram/JuNe . . . . 1 match
key=list(eachWord);key.sort();key=''.join(key)
- CodeRace/20060105/Leonardong . . . . 1 match
report.sort()
- DPSCChapter2 . . . . 1 match
Before launching into our descriptions of specific design patterns, we present a case study of sorts, involving multiple patterns. In the Design Pattern preface, the Gang of Four speak about moving from a "Huh?" to an "Aha!" experience with regard to understanding design patterns. We present here a little drama portraying such a transition. It consists of three vignettes: three days in the life of two Smalltalk programmers who work for MegaCorp Insurance Company. We are listening in on conversations between Don (an object newbie, but an experienced business analyst) and Jane (an object and pattern expert). Don comes to Jane with his design problems, and they solve them together. Although the characters are fictitious, the designs are real and have all been part of actual systems written in Smalltalk. Our goal is to demonstrate how, by careful analysis, design patterns can help derive solutions to real-world problems.
- DocumentObjectModel . . . . 1 match
Different variants of DOMs were initially implemented by web browsers to manipulate elements in an HTML document. This prompted the World Wide Web Consortium (W3C) to come up with a series of standard specifications for DOM (hence called W3CDOM).
- Eclipse . . . . 1 match
* 결론이 말이지. consortium에 이렇게 정의 되어 있다는.. 아 영어여...그리고 아예 Subproject에 Platform, JDT, PDE로 나누어 있구만. 부지런한 사람들 --상민
- Expat . . . . 1 match
James Clark released version 1.0 in 1998 while serving as technical lead on the XML Working Group at the World Wide Web Consortium. Clark released two more versions, 1.1 and 1.2, before turning the project over to a group led by Clark Cooper, Fred Drake and Paul Prescod in 2000. The new group released version 1.95.0 in September 2000 and continues to release new versions to incorporate bug fixes and enhancements. Expat is hosted as a SourceForge project. Versions are available for most major operating systems.
- JollyJumpers/1002 . . . . 1 match
sorted((abs(values[i]-values[i+1])
- LIB_3 . . . . 1 match
// ready queue sort
- LongestNap/문보창 . . . . 1 match
sort(&promise[0], &promise[nPromise], Promise());
- MineFinder . . . . 1 match
Profile: Function timing, sorted by time
- NetworkDatabaseManagementSystem . . . . 1 match
The network model is a database model conceived as flexible way of representing objects and their relationships. Its original inventor was Charles Bachman, and it was developed into a standard specification published in 1969 by the CODASYL Consortium. Where the hierarchical model structures data as a tree of records, with each record having one parent record and many children, the network model allows each record to have multiple parent and child records, forming a lattice structure.
- OurMajorLangIsCAndCPlusPlus/locale.h . . . . 1 match
#define LC_COLLATE (integer constant expression) 스트링(string)의 정렬 순서(sort order 또는 collation)를 위한 로케일 설정을 위해 사용
- Plugin/Chrome/네이버사전 . . . . 1 match
"sort=relevance&" + // another good one is "interestingness-desc"
- Polynomial . . . . 1 match
void sort(Node *node) // 다항식을 내림차순으로 정리한다.
- ProjectPrometheus/CollaborativeFiltering . . . . 1 match
*When a user does a specific well-defined action, bookPref is updated as "prefCoef*userPref+bookPref" and resorted. (some books at the end of the list might be eliminated for performance reasons)
- RunTimeTypeInformation . . . . 1 match
int my_comparison_method_for_generic_sort(base &ref1, base &ref2)
- STL . . . . 1 match
* ["STL/sort"]
- TugOfWar/문보창 . . . . 1 match
qsort(weight, nPeople, sizeof(int), comp);
- TugOfWar/신재동 . . . . 1 match
def reverseSort(list):
list.sort()
reverseSort(weights)
- UglyNumbers/1002 . . . . 1 match
그러다가, '에이.. 걍 sort 해버리자.' 접근. 하지만, n 값에 따라 결과가 영향을 받을 것이라는 막연한 생각에 연습장에서 한참 고민. 그냥 실제 원하는 값 보다 여유분 값을 만들고 적당히 답을 내는 방식으로 접근. 하지만, 무언가 굉장히 찝찝함.
- UglyNumbers/곽세환 . . . . 1 match
numbers.sort();
- Velocity . . . . 1 match
Veloeclipse - http://propsorter.sourceforge.net/veloeclipse/
- VonNeumannAirport/남상협 . . . . 1 match
trafficResult.sort(lambda x,y: cmp(x[1],y[1]))
- WeightsAndMeasures/김상섭 . . . . 1 match
sort(test.begin(), test.end(), compare);
- WeightsAndMeasures/문보창 . . . . 1 match
sort(&t[1], &t[numT+1], turtleGreater);
- ZeroPage_200_OK . . . . 1 match
* sortable(), appendTo(), data(), focus(), blur(), clone() 등의 jQuery API를 사용.
- [Lovely]boy^_^/USACO/MixingMilk . . . . 1 match
sort(numlist.begin(), numlist.end());
- subsequence/권영기 . . . . 1 match
sort(barn.begin(), barn.begin() + n);
- usa_selfish/곽병학 . . . . 1 match
Arrays.sort(p, new myCmp());
- usa_selfish/권영기 . . . . 1 match
sort(c, c+n, cc);
- usa_selfish/김태진 . . . . 1 match
qsort((void*)arr, N, sizeof(cow), compare);
- 데블스캠프2004/세미나주제 . . . . 1 match
[STL]을 할때 단순히 자료구조를 사용하는 방법을 같이 보는것도 중요하겠지만 내부구조 (예를 들어, vector는 동적 배열, list은 (doubly?) linked list..)와 같이 쓰이는 함수(sort나 또 뭐가있드라..그 섞는것..; ), 반복자(Iterator)에 대한 개념 등등도 같이 보고 더불어 VC++6에 내장된 STL이 ''표준 STL이 아니라는 것''도 같이 말씀해 주셨으면;; (SeeAlso [http://www.stlport.org/ STLPort]) - [임인택]
- 벡터/김홍선,노수민 . . . . 1 match
sort(vec.begin(), vec.end(), *compare);
- 벡터/임영동 . . . . 1 match
sort(vec.begin(), vec.end(), compare);
- 새싹교실/2011 . . . . 1 match
달력을 하던 sorting을 하던 알아서 할 것
- 새싹교실/2011/무전취식/레벨9 . . . . 1 match
* Bubble Sort, Selection Sort
void selectionSort(int A[], int size);
selectionSort(a,N);
void selectionSort(int A[], int size)
// sort in increasing order
- 새싹교실/2012/주먹밥 . . . . 1 match
Sort 신난다.
- Bubble Sort
- Quick Sort를 배우고 싶다. 소스를 찾아서 짜보고
quicksort( );
* Quick Sort 짜보기
- 알고리즘3주숙제 . . . . 1 match
The directory is sorted by alphabetical order of names. It contains n entries which are stored in 2 arrays:
- 정렬/곽세환 . . . . 1 match
ifstream fin("unsorteddata.txt");
- 정렬/문원명 . . . . 1 match
ifstream fin("UnsortedData.txt");
- 정렬/방선희 . . . . 1 match
ifstream fin("UnsortedData.txt");
- 중위수구하기/김태훈zyint . . . . 1 match
sort($value); // 배열 오름차순 정렬
Found 103 matching pages out of 7555 total pages (2730 pages are searched)
You can also click here to search title.